Rocky_Mountain_Vending/.pnpm-store/v10/files/36/0d135c2a43f9d9c728f433c36ed571131e5b27df46c2749e446e104c42b4116a08b6e215b86c37a23bff2122a1d1432591b6976a6e685fde4de75f8dfc7c9f
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

15 lines
404 B
Text

import {InternSet} from "internmap";
export default function disjoint(values, other) {
const iterator = other[Symbol.iterator](), set = new InternSet();
for (const v of values) {
if (set.has(v)) return false;
let value, done;
while (({value, done} = iterator.next())) {
if (done) break;
if (Object.is(v, value)) return false;
set.add(value);
}
}
return true;
}