UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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