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