curry property

Output Function(Input2, Input3, Input4) Function(Input1) curry

Extract first parameter from this function to allow curring.

Implementation

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