ix
Version: 
The Interactive Extensions for JavaScript
1 lines • 834 B
Source Map (JSON)
{"version":3,"sources":["add/asynciterable-operators/debounce.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAExD;;GAEG;AACH,MAAM,UAAU,aAAa,CAA6B,IAAY;IACpE,OAAO,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAC9B,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,QAAQ,GAAG,aAAa,CAAC","file":"debounce.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { debounce } from '../../asynciterable/debounce';\n\n/**\n * @ignore\n */\nexport function debounceProto<T>(this: AsyncIterableX<T>, time: number): AsyncIterableX<T> {\n  return debounce(this, time);\n}\n\nAsyncIterableX.prototype.debounce = debounceProto;\n\ndeclare module '../../asynciterable/asynciterablex' {\n  interface AsyncIterableX<T> {\n    debounce: typeof debounceProto;\n  }\n}\n"]}