Files
khalijpay-issuer/node_modules/d3-array/src/union.js
2025-10-23 21:52:07 +03:30

12 lines
217 B
JavaScript

import {InternSet} from "internmap";
export default function union(...others) {
const set = new InternSet();
for (const other of others) {
for (const o of other) {
set.add(o);
}
}
return set;
}