pluck.js 295 B

123456789
  1. import { pluck as higherOrder } from 'rxjs/operators';
  2. export function pluck() {
  3. var properties = [];
  4. for (var _i = 0; _i < arguments.length; _i++) {
  5. properties[_i] = arguments[_i];
  6. }
  7. return higherOrder.apply(void 0, properties)(this);
  8. }
  9. //# sourceMappingURL=pluck.js.map