pluck.js 174 B

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