uncurry property

Output Function(Input1, Input2) uncurry

Convert a function that returns another function to a single function accepting two parameters.

Inverse of curry.

Implementation

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