1 2 3 4 5 6 7 8 9 10 11
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; }