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>
29 lines
No EOL
564 B
Text
29 lines
No EOL
564 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = disjoint;
|
|
|
|
var _index = require("../../../lib-vendor/internmap/src/index.js");
|
|
|
|
function disjoint(values, other) {
|
|
const iterator = other[Symbol.iterator](),
|
|
set = new _index.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;
|
|
} |