Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/150a3580c1b568721d8495aafd7fdc74aff25ca48fe33a35b493f57bbedbfc781dcd0ee2f2af5c77956c2ea6b0ad80cefc00678e7c13171e46b9c22da312d5
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

32 lines
617 B
Text

'use strict';
class AbortSignal {
onabort = null;
_aborted = false;
constructor() {
Object.defineProperty(this, "_aborted", {
value: false,
writable: true,
});
}
get aborted() {
return this._aborted;
}
abort() {
this._aborted = true;
if (this.onabort) {
this.onabort(this);
this.onabort = null;
}
}
}
class AbortController {
signal = new AbortSignal();
abort() {
this.signal.abort();
}
}
exports.AbortController = AbortController;
exports.AbortSignal = AbortSignal;