itachi-fp
v0.0.6
Published
functional programming library
Downloads
1
Readme
itachi
Functional Programming library
How to user
import * as _ from 'itachi-fp'
const add = _.curry(function (a, b) {
return a + b
})
// 1.
add(1, 2)
// 2.
add(1)(2)
~~Uchiha Itachi~~