Rocky_Mountain_Vending/.pnpm-store/v10/files/07/43ccf0d6d7be128584b9dc60fe38c0cf3e3dd5bf4bd4a67b5036bf12a24db89d800de3e765f48e1d8471ec31acd55e586dfaefc41d917d5434796cd13ab48f
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

6 lines
251 B
Text

function _check_private_redeclaration(obj, privateCollection) {
if (privateCollection.has(obj)) {
throw new TypeError("Cannot initialize the same private elements twice on an object");
}
}
export { _check_private_redeclaration as _ };