single.js 169 B

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