Returns a curried function that accepts arguments in reverse order.
add(3, 9)// => 12flip(add)(9)(3)// => 12 Copy
add(3, 9)// => 12flip(add)(9)(3)// => 12
Generated using TypeDoc
Returns a curried function that accepts arguments in reverse order.