UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 287 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { retry } from '../../iterable/operators/retry.mjs'; /** * @ignore */ export function retryProto(count = -1) { return retry(count)(this); } IterableX.prototype.retry = retryProto; //# sourceMappingURL=retry.mjs.map