Rocky_Mountain_Vending/.pnpm-store/v10/files/55/9caf1181790fbd6ad1e1ac2fa6a21f428e94b1b17e25d0d6646fae49afb85fd245ffc1dc4175557978a1fd444ca98ab6f36e86ea486ef454e2ae8cf5f0b096
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

23 lines
307 B
Text

export class Timeout {
constructor(callback, args) {
if (typeof callback === "function") {
callback(...args);
}
}
ref() {
return this;
}
unref() {
return this;
}
hasRef() {
return false;
}
refresh() {
return this;
}
[Symbol.dispose]() {}
[Symbol.toPrimitive]() {
return 0;
}
}