ix
Version:
The Interactive Extensions for JavaScript
1 lines • 969 B
Source Map (JSON)
{"version":3,"sources":["add/asynciterable-operators/finally.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,QAAQ,IAAI,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAExE;;GAEG;AACH,MAAM,UAAU,YAAY,CAE1B,MAAgC;IAEhC,OAAO,aAAa,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;AACrC,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,OAAO,GAAG,YAAY,CAAC","file":"finally.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { _finally as _finallyProto } from '../../asynciterable/finally';\n\n/**\n * @ignore\n */\nexport function finallyProto<TSource>(\n this: AsyncIterableX<TSource>,\n action: () => any | Promise<any>\n) {\n return _finallyProto(this, action);\n}\n\nAsyncIterableX.prototype.finally = finallyProto;\n\nexport declare namespace asynciterable {\n let _finally: typeof _finallyProto;\n}\n\ndeclare module '../../asynciterable/asynciterablex' {\n interface AsyncIterableX<T> {\n finally: typeof finallyProto;\n }\n}\n"]}