@unction/splat
v10.14.0
Published
Takes a function and a list of values and recursively applies the value to the functions
Downloads
86
Readme
@unction/splat
A => Array => C
Takes a curried function (of n depth) and a list of arguments for that function (of n size) and applies those arguments to that function.
splat((a) => (b) => a + b)([1, 2]) // 3