Rocky_Mountain_Vending/.pnpm-store/v10/files/84/86d947bf4decbff77ff815e954e046302cad73f9b9ed41b2cf0114252f0b77f12ebd27a6262bfc1476cf9c901dce88c839e044efbeafa5799d3414719c077b
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

13 lines
403 B
Text

import { Immediate } from "./immediate.mjs";
export function setImmediateFallbackPromises(value) {
return new Promise((res) => {
res(value);
});
}
export function setImmediateFallback(callback, ...args) {
return new Immediate(callback, args);
}
setImmediateFallback.__promisify__ = setImmediateFallbackPromises;
export function clearImmediateFallback(immediate) {
immediate?.[Symbol.dispose]();
}