source: node_modules/d3-array/src/union.js@ ba17441

Last change on this file since ba17441 was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 217 bytes
Line 
1import {InternSet} from "internmap";
2
3export default function union(...others) {
4 const set = new InternSet();
5 for (const other of others) {
6 for (const o of other) {
7 set.add(o);
8 }
9 }
10 return set;
11}
Note: See TracBrowser for help on using the repository browser.