UNPKG

eaz-utils

Version:

A cleverly organized set of utilities to make JavaScript and TypeScript development easier.

6 lines (4 loc) 118 B
function union(...sets) { return new Set([].concat(...sets.map(set => Array.from(set)))); } module.exports = union;