server-json/node_modules/ramda/es/internal/_xuniqBy.js
2024-11-01 08:00:42 +00:00

20 lines
No EOL
611 B
JavaScript

import _Set from "./_Set.js";
import _xfBase from "./_xfBase.js";
var XUniqBy = /*#__PURE__*/function () {
function XUniqBy(f, xf) {
this.xf = xf;
this.f = f;
this.set = new _Set();
}
XUniqBy.prototype['@@transducer/init'] = _xfBase.init;
XUniqBy.prototype['@@transducer/result'] = _xfBase.result;
XUniqBy.prototype['@@transducer/step'] = function (result, input) {
return this.set.add(this.f(input)) ? this.xf['@@transducer/step'](result, input) : result;
};
return XUniqBy;
}();
export default function _xuniqBy(f) {
return function (xf) {
return new XUniqBy(f, xf);
};
}