Returns a function that yields true if a number is at least min and no greater than max
const t = rangeInclusive(50, 100);t(40); // falset(50); // truet(60); // truet(100); // truet(101); // false Copy
const t = rangeInclusive(50, 100);t(40); // falset(50); // truet(60); // truet(100); // truet(101); // false
Returns a function that yields true if a number is at least min and no greater than max