UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (9 loc) 360 B
import { IterableX } from '../../iterable/iterablex'; import { zip } from '../../iterable/zip'; export function zipProto(...args) { let [arg1, ...sources] = args; sources = typeof arg1 === 'function' ? [this, ...sources] : (arg1 = this) && args; return zip(arg1, ...sources); } IterableX.prototype.zip = zipProto; //# sourceMappingURL=zip.mjs.map