@telostat/prelude - v0.7.0
    Preparing search index...

    Variable curryConst

    curry: <TArgs extends any[], TReturn>(
        fn: (...args: TArgs) => TReturn,
    ) => CurriedFn<TArgs, TReturn>

    Takes a function that receives multiple arguments and returns a "curried" version of that function that can take any number of those arguments and if they are less than needed a new function that takes the rest of them will be returned

    Type Declaration