UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (10 loc) 303 B
import { IterableX } from '../../iterable/iterablex.mjs'; import { skipLast } from '../../iterable/operators/skiplast.mjs'; /** * @ignore */ export function skipLastProto(count) { return skipLast(count)(this); } IterableX.prototype.skipLast = skipLastProto; //# sourceMappingURL=skiplast.mjs.map