Rocky_Mountain_Vending/.pnpm-store/v10/files/0b/9d3ffa849076c4bec1c639db115ca9db3b0fd9ede7ab49a94be532315073977f6565a9d1b5ab671edd9eea29cc46f82c9cedd91405776c39ad78cc6db3f334
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
352 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export function createIncrementalIdGenerator(): GetIdFn {
let id = 0;
return (): number => {
if (id === Number.MAX_SAFE_INTEGER) {
id = 0;
}
return ++id;
};
}
/**
* @internal
*/
export type GetIdFn = () => number;