takeLast.js 183 B

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