Rocky_Mountain_Vending/.pnpm-store/v10/files/6f/e70afaa6e54d80afeaa9822ea0b77fc316bab4deef8e03d35781aa5cd9e4d031478a188bba86f6025c47dd1d22342575991de98b82f8e0f06c5ce23f26dff3
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

12 lines
320 B
Text

export const getCircularReplacer = () => {
const seen = new WeakSet();
return (key, value) => {
if (typeof value === "object" && value !== null) {
if (seen.has(value)) {
return "[Circular]";
}
seen.add(value);
}
return value;
};
};