Merge pull request #35 from mariusschulz/patch-1

Curries `add` function in point-free style code
This commit is contained in:
hemanth.hm 2016-05-31 10:57:09 +05:30
commit 49e84bf415

View file

@ -141,7 +141,7 @@ executions with the the same input parameters.
```js
// Given
let map = fn => list => list.map(fn);
let add = (a, b) => a + b;
let add = a => b => a + b;
// Then