ix
Version:
The Interactive Extensions for JavaScript
1 lines • 838 B
Source Map (JSON)
{"version":3,"sources":["add/asynciterable-operators/startwith.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAE1D;;GAEG;AACH,MAAM,UAAU,cAAc,CAA6B,GAAG,IAAS;IACrE,OAAO,SAAS,CAAC,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC;AAClC,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,SAAS,GAAG,cAAc,CAAC","file":"startwith.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { startWith } from '../../asynciterable/startwith';\n\n/**\n * @ignore\n */\nexport function startWithProto<T>(this: AsyncIterableX<T>, ...args: T[]) {\n return startWith(this, ...args);\n}\n\nAsyncIterableX.prototype.startWith = startWithProto;\n\ndeclare module '../../asynciterable/asynciterablex' {\n interface AsyncIterableX<T> {\n startWith: typeof startWithProto;\n }\n}\n"]}