skipLast.js 167 B

12345
  1. import { skipLast as higherOrder } from 'rxjs/operators';
  2. export function skipLast(count) {
  3. return higherOrder(count)(this);
  4. }
  5. //# sourceMappingURL=skipLast.js.map