curryLast property

Output Function(Input1, Input2) Function(Input3) curryLast

Extract last parameter from this function to allow curring.

Implementation

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