@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
1 lines • 822 B
Source Map (JSON)
{"version":3,"sources":["add/iterable-operators/buffer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AAEzD;;GAEG;AACH,MAAM,UAAU,WAAW,CAAwB,KAAa,EAAE,IAAa;IAC7E,OAAO,MAAM,CAAI,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC;AACtC,CAAC;AAED,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC","file":"buffer.js","sourcesContent":["import { IterableX } from '../../iterable/iterablex';\nimport { buffer } from '../../iterable/operators/buffer';\n\n/**\n * @ignore\n */\nexport function bufferProto<T>(this: IterableX<T>, count: number, skip?: number): IterableX<T[]> {\n return buffer<T>(count, skip)(this);\n}\n\nIterableX.prototype.buffer = bufferProto;\n\ndeclare module '../../iterable/iterablex' {\n interface IterableX<T> {\n buffer: typeof bufferProto;\n }\n}\n"]}