DIR : /home/kozerus/public_html/cropex/node/node_modules/d3-array/src/union.js
/home/kozerus/public_html/cropex/node/node_modules/d3-array/src
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;
}
//