UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 311 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex'; import { doWhile } from '../../asynciterable/dowhile'; /** * @ignore */ export function doWhileProto(condition) { return doWhile(this, condition); } AsyncIterableX.prototype.doWhile = doWhileProto; //# sourceMappingURL=dowhile.mjs.map