update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
39
node_modules/ramda/es/internal/_xdropRepeatsWith.js
generated
vendored
Normal file
39
node_modules/ramda/es/internal/_xdropRepeatsWith.js
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
import _curry2 from "./_curry2.js";
|
||||
import _xfBase from "./_xfBase.js";
|
||||
|
||||
var XDropRepeatsWith =
|
||||
/*#__PURE__*/
|
||||
function () {
|
||||
function XDropRepeatsWith(pred, xf) {
|
||||
this.xf = xf;
|
||||
this.pred = pred;
|
||||
this.lastValue = undefined;
|
||||
this.seenFirstValue = false;
|
||||
}
|
||||
|
||||
XDropRepeatsWith.prototype['@@transducer/init'] = _xfBase.init;
|
||||
XDropRepeatsWith.prototype['@@transducer/result'] = _xfBase.result;
|
||||
|
||||
XDropRepeatsWith.prototype['@@transducer/step'] = function (result, input) {
|
||||
var sameAsLast = false;
|
||||
|
||||
if (!this.seenFirstValue) {
|
||||
this.seenFirstValue = true;
|
||||
} else if (this.pred(this.lastValue, input)) {
|
||||
sameAsLast = true;
|
||||
}
|
||||
|
||||
this.lastValue = input;
|
||||
return sameAsLast ? result : this.xf['@@transducer/step'](result, input);
|
||||
};
|
||||
|
||||
return XDropRepeatsWith;
|
||||
}();
|
||||
|
||||
var _xdropRepeatsWith =
|
||||
/*#__PURE__*/
|
||||
_curry2(function _xdropRepeatsWith(pred, xf) {
|
||||
return new XDropRepeatsWith(pred, xf);
|
||||
});
|
||||
|
||||
export default _xdropRepeatsWith;
|
Loading…
Add table
Add a link
Reference in a new issue