Function tools for JavaScript
npm install @functional-abstraction/functools:hammer_and_wrench: @functional-abstraction/functools
==
Function tools for JavaScript.
See docs.
Parent is js-library.
``js``
let j = ( a , b , c , x ) => a x2 + b x + c ;
let p = partial( j , [ 5 , 4 , -1 ] ) ;
p( -1 ) ; // 5 - 4 - 1 = 0













- https://docs.python.org/3/library/functions.html
- https://docs.python.org/3/library/functools.html
- https://github.com/lodash/lodash