UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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