Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/fab02ce253cf28ad2fd715dcd4376fa9c079a43b5f51092fd6f4905acc184c90ba9e7a10904709a1e5a4871f976ce472297d0d318457284a568e8e3d3a706f
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

24 lines
No EOL
483 B
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export class TaskQueue {
#chain;
constructor() {
this.#chain = Promise.resolve();
}
postTask(task) {
const result = this.#chain.then(task);
this.#chain = result.then(() => {
return undefined;
}, () => {
return undefined;
});
return result;
}
}
//# sourceMappingURL=TaskQueue.js.map