Functional programming experimentation
npm install yafuKey points:
* curry works a bit differently than in many other JavaScript libraries,
specifically when it is the case that a curried function receives more agruments than it has declared
each function really* only does one thing and one thing only
* no checking of types inside functions
* no varardic funtions
* no inspection of arguments (exception is the curry function)
* no return of null or undefined
The idea is to be strict on these rules for the sake of being strict. This in order to see if a library like
this results in better code in applications and programs where it is used.
lib folder for the available functions. Each file should contain documentation. Files starting with underscore are