{"version":3,"sources":["iterable/operators/retry.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAGzC,MAAM,UAAU,KAAK,CAAU,QAAgB,CAAC,CAAC;IAC/C,OAAO,SAAS,qBAAqB,CAAC,MAAyB;QAC7D,OAAO,QAAQ,CAAU,WAAW,CAAoB,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC;IAC1E,CAAC,CAAC;AACJ,CAAC","file":"retry.js","sourcesContent":["import { IterableX } from '../iterablex';\nimport { repeatValue } from '../repeatvalue';\nimport { catchAll } from '../catcherror';\nimport { MonoTypeOperatorFunction } from '../../interfaces';\n\nexport function retry<TSource>(count: number = -1): MonoTypeOperatorFunction<TSource> {\n  return function retryOperatorFunction(source: Iterable<TSource>): IterableX<TSource> {\n    return catchAll<TSource>(repeatValue<Iterable<TSource>>(source, count));\n  };\n}\n"]}