UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 304 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { doWhile } from '../../iterable/operators/dowhile.mjs'; /** * @ignore */ export function doWhileProto(condition) { return doWhile(condition)(this); } IterableX.prototype.doWhile = doWhileProto; //# sourceMappingURL=dowhile.mjs.map