MCPcopy Index your code
hub / github.com/getify/Functional-Light-JS / partial

Function partial

ch11-code/fp-helpers.js:48–52  ·  view source on GitHub ↗
(fn,...presetArgs)

Source from the content-addressed store, hash-verified

46}
47
48function partial(fn,...presetArgs) {
49 return function partiallyApplied(...laterArgs){
50 return fn( ...presetArgs, ...laterArgs );
51 };
52}
53
54function partialRight(fn,...presetArgs) {
55 return function partiallyApplied(...laterArgs){

Callers 1

addStockFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected