- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
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;
|
|
}
|