Rocky_Mountain_Vending/.pnpm-store/v10/files/03/ccb045054465dd040de5db9a2ee24121354b432cca5593e875d0c67221eccca8c57acc793a8fd32dbf7c0776d1c95e612628bf26ec1ccab9e8d03043f0a6c3
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

18 lines
No EOL
352 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export function createIncrementalIdGenerator() {
let id = 0;
return () => {
if (id === Number.MAX_SAFE_INTEGER) {
id = 0;
}
return ++id;
};
}
//# sourceMappingURL=incremental-id-generator.js.map