ix
Version:
The Interactive Extensions for JavaScript
1 lines • 959 B
Source Map (JSON)
{"version":3,"sources":["add/asynciterable-operators/catch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,MAAM,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAElE;;GAEG;AACH,MAAM,UAAU,UAAU,CAExB,GAAG,IAAwB;IAE3B,OAAO,WAAW,CAAI,IAAI,EAAE,GAAG,IAAI,CAAC,CAAC;AACvC,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,KAAK,GAAG,UAAU,CAAC","file":"catch.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { _catch as _catchProto } from '../../asynciterable/catch';\n\n/**\n * @ignore\n */\nexport function catchProto<T>(\n this: AsyncIterableX<T>,\n ...args: AsyncIterable<T>[]\n): AsyncIterableX<T> {\n return _catchProto<T>(this, ...args);\n}\n\nAsyncIterableX.prototype.catch = catchProto;\n\nexport declare namespace asynciterable {\n let _catch: typeof _catchProto;\n}\n\ndeclare module '../../asynciterable/asynciterablex' {\n interface AsyncIterableX<T> {\n catch: typeof catchProto;\n }\n}\n"]}