UNPKG

funcdash

Version:

Lodash mixin for more functional utilities.

19 lines (18 loc) 420 B
/** * FuncDash * @class _ */ module.exports = { // Function apply: require('./function/apply'), call: require('./function/call'), mapInvoke: require('./function/mapInvoke'), // Logic and: require('./logic/and'), ifElse: require('./logic/ifElse'), not: require('./logic/not'), or: require('./logic/or'), // Math multiply: require('./math/multiply'), product: require('./math/product') };