update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
9
node_modules/ramda/es/internal/_createPartialApplicator.js
generated
vendored
Normal file
9
node_modules/ramda/es/internal/_createPartialApplicator.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
import _arity from "./_arity.js";
|
||||
import _curry2 from "./_curry2.js";
|
||||
export default function _createPartialApplicator(concat) {
|
||||
return _curry2(function (fn, args) {
|
||||
return _arity(Math.max(0, fn.length - args.length), function () {
|
||||
return fn.apply(this, concat(args, arguments));
|
||||
});
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue