The number to check.
A boolean indicating whether the number is a valid minute value.
This function checks if the given number is an integer between 0 and 59, inclusive.
isValidMinutes(30); // returns true
isValidMinutes(60); // returns false
Generated using TypeDoc
Checks if the given number is a valid minute value.