PURE_IMPORTS_START tslib,_Subscriber PURE_IMPORTS_END
(predicate, thisArg)
| 74824 | |
| 74825 | |
| 74826 | function find(predicate, thisArg) { |
| 74827 | if (typeof predicate !== 'function') { |
| 74828 | throw new TypeError('predicate is not a function'); |
| 74829 | } |
| 74830 | return function (source) { return source.lift(new FindValueOperator(predicate, source, false, thisArg)); }; |
| 74831 | } |
| 74832 | var FindValueOperator = /*@__PURE__*/ (function () { |
| 74833 | function FindValueOperator(predicate, source, yieldIndex, thisArg) { |
| 74834 | this.predicate = predicate; |