gali
gali is curry
gali is curry
Useful collection of functional composition helper functions
((a1, a2, ..., an) -> x) -> (a1 -> a2 -> ... -> an -> x)
Small collection of functions to assist in functional composition
Simple and lightweight functional toolset inspired by Clojure using import.
Fast, small and purely functional utility library
Curry functions with a name.
Alternative to babel-plugin-pipe-operator
curried default options
Simplified method currying
uncurry function that was curried before
Tiny function which returns curried equivalent of provided function
```jsx /** * @name curry * @type {Function} * @description recursive autocurry * @since 0.0.1 * @example curry(function, arg1, arg2)(arg3)(arg4, arg5) */ export const curry = (func, array = []) => (...args) => (arr) => ( arr.length === func.length ? func(
A minimal-weight currying utility similar to lodash.curry
creates function with arguments bound to it
Simplified method currying
kind of like lodash but works with Immutable
A wrapper around Most.js 1.0 providing an auto-curried API + a few minor changes
Simplified method currying
Stand-alone implementation of _.partial. With several advantages