@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
1 lines • 946 B
Source Map (JSON)
{"version":3,"sources":["add/asynciterable-operators/except.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAE9D;;GAEG;AACH,MAAM,UAAU,WAAW,CAEzB,MAAwB,EACxB,QAAqD;IAErD,OAAO,MAAM,CAAI,MAAM,EAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC;AAC3C,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,MAAM,GAAG,WAAW,CAAC","file":"except.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { except } from '../../asynciterable/operators/except';\n\n/**\n * @ignore\n */\nexport function exceptProto<T>(\n this: AsyncIterableX<T>,\n second: AsyncIterable<T>,\n comparer?: (x: T, y: T) => boolean | Promise<boolean>\n): AsyncIterableX<T> {\n return except<T>(second, comparer)(this);\n}\n\nAsyncIterableX.prototype.except = exceptProto;\n\ndeclare module '../../asynciterable/asynciterablex' {\n interface AsyncIterableX<T> {\n except: typeof exceptProto;\n }\n}\n"]}