UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 302 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { union } from '../../iterable/operators/union.mjs'; /** * @ignore */ export function unionProto(right, comparer) { return union(right, comparer)(this); } IterableX.prototype.union = unionProto; //# sourceMappingURL=union.mjs.map