isNotBetween()
isNotBetween(
a
): (arg
) =>boolean
Determine if the given value is not between the the values in the tuple.
Parameters
a
[number
, number
]
The tuple to check against.
Returns
Function
Parameters
arg
number
Returns
boolean
Remarks
pure function
Example
isBetween([42, 101])(89); // false
isBetween([42, 126])(7); // true