UNPKG

ix

Version:

The Interactive Extensions for JavaScript

9 lines (7 loc) 299 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { takeWhile } from '../../iterable/operators/takewhile.mjs'; export function takeWhileProto(predicate) { return takeWhile(predicate)(this); } IterableX.prototype.takeWhile = takeWhileProto; //# sourceMappingURL=takewhile.mjs.map