Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/70c9ee532162ddb0ed60fad8ec23e9570db7e374184f0c66379888a3dabc30f0ffe9261214a481180d3ac6a3475c6088a35287961f8c5c2f0fc663e8c37ff5
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

10 lines
262 B
Text

/* IMPORT */
/* MAIN */
const attemptifyAsync = (fn, options) => {
const { onError } = options;
return function attemptified(...args) {
return fn.apply(undefined, args).catch(onError);
}; //TSC
};
/* EXPORT */
export default attemptifyAsync;