Curry a Function
to curry
Function
import {F} from 'ts-toolbelt' /// If you are looking for creating types for `curry` /// It handles placeholders and variable arguments declare function curry<Fn extends F.Function>(fn: Fn): F.Curry<Fn>
Curry a Function