withLatestFrom.js 189 B

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