swc/crates/swc_bundler/tests/.cache/deno/a0ec615fc998552dc25b92f8d0949c54b286dc0c.ts
2021-11-09 20:42:49 +09:00

31 lines
818 B
TypeScript

// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_xfind.js
import _curry2 from './_curry2.js';
import _reduced from './_reduced.js';
import _xfBase from './_xfBase.js';
function XFind(f, xf) {
this.xf = xf;
this.f = f;
this.found = false;
}
XFind.prototype['@@transducer/init'] = _xfBase.init;
XFind.prototype['@@transducer/result'] = function(result) {
if (!this.found) {
result = this.xf['@@transducer/step'](result, void 0);
}
return this.xf['@@transducer/result'](result);
};
XFind.prototype['@@transducer/step'] = function(result, input) {
if (this.f(input)) {
this.found = true;
result = _reduced(this.xf['@@transducer/step'](result, input));
}
return result;
};
var _xfind = _curry2(function _xfind(f, xf) { return new XFind(f, xf); });
export default _xfind;