ix
Version:
The Interactive Extensions for JavaScript
16 lines (14 loc) • 484 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.doWhileProto = void 0;
const iterablex_js_1 = require("../../iterable/iterablex.js");
const dowhile_js_1 = require("../../iterable/operators/dowhile.js");
/**
* @ignore
*/
function doWhileProto(condition) {
return (0, dowhile_js_1.doWhile)(condition)(this);
}
exports.doWhileProto = doWhileProto;
iterablex_js_1.IterableX.prototype.doWhile = doWhileProto;
//# sourceMappingURL=dowhile.js.map