Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/3a011d63c461b68ed97a8e3b9b45eae5f8260794dbabf277bd369843b8e306a01fff3870216880bcae596e8afdfe147cdeffff34005b1cc8b141a9368583dc
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

16 lines
No EOL
372 B
Text

export function createPromiseWithResolvers() {
// Shim of Stage 4 Promise.withResolvers proposal
let resolve;
let reject;
const promise = new Promise((res, rej)=>{
resolve = res;
reject = rej;
});
return {
resolve: resolve,
reject: reject,
promise
};
}
//# sourceMappingURL=promise-with-resolvers.js.map