| Current Path : /var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/d3-array/src/ |
| Current File : /var/www/sitesecurity.bitkit.dk/httpdocs/node_modules/d3-array/src/difference.js |
import {InternSet} from "internmap";
export default function difference(values, ...others) {
values = new InternSet(values);
for (const other of others) {
for (const value of other) {
values.delete(value);
}
}
return values;
}