curryLast property

Output Function(Input1) Function(Input2) curryLast

Convert this function from accepting two parameters to a function that returns another function both accepting one parameter.

Curry the last parameter in the function.

Implementation

Output Function(Input1) Function(Input2) get curryLast =>
    (input2) => (input1) => this(input1, input2);