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

25 lines
No EOL
742 B
JavaScript

import _includesWith from "./_includesWith.js";
import _xfBase from "./_xfBase.js";
var XUniqWith = /*#__PURE__*/function () {
function XUniqWith(pred, xf) {
this.xf = xf;
this.pred = pred;
this.items = [];
}
XUniqWith.prototype['@@transducer/init'] = _xfBase.init;
XUniqWith.prototype['@@transducer/result'] = _xfBase.result;
XUniqWith.prototype['@@transducer/step'] = function (result, input) {
if (_includesWith(this.pred, input, this.items)) {
return result;
} else {
this.items.push(input);
return this.xf['@@transducer/step'](result, input);
}
};
return XUniqWith;
}();
export default function _xuniqWith(pred) {
return function (xf) {
return new XUniqWith(pred, xf);
};
}