import { InternSet } from'../../internmap/src/index.js';
function union(...others) {
constset = new InternSet();
for (const other of others) {
for (const o of other) {
set.add(o);
}
}
returnset;
}
export { union asdefault };
//# sourceMappingURL=union.js.map