{"version":3,"sources":["add/asynciterable-operators/delayeach.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAC;AAEjF,MAAM,UAAU,cAAc,CAE5B,OAAe;IAEf,OAAO,IAAI,sBAAsB,CAAU,IAAI,EAAE,OAAO,CAAC,CAAC;AAC5D,CAAC;AAED,cAAc,CAAC,SAAS,CAAC,SAAS,GAAG,cAAc,CAAC","file":"delayeach.js","sourcesContent":["import { AsyncIterableX } from '../../asynciterable/asynciterablex';\nimport { DelayEachAsyncIterable } from '../../asynciterable/operators/delayeach';\n\nexport function delayEachProto<TSource>(\n  this: AsyncIterableX<TSource>,\n  dueTime: number\n): AsyncIterableX<TSource> {\n  return new DelayEachAsyncIterable<TSource>(this, dueTime);\n}\n\nAsyncIterableX.prototype.delayEach = delayEachProto;\n\ndeclare module '../../asynciterable/asynciterablex' {\n  interface AsyncIterableX<T> {\n    delayEach: typeof delayEachProto;\n  }\n}\n"]}