UNPKG

@tsdotnet/linq

Version:

A familiar set of functions that operate on JavaScript iterables (ES2015+) in a similar way to .NET's LINQ does with enumerables.

10 lines (7 loc) 216 B
import distinct from '../filters/distinct.js'; import merge from './merge.js'; function union(...sequences) { return distinct(merge(sequences)); } export { union as default }; //# sourceMappingURL=union.js.map