Type guard that checks if a value is a valid Ruku number.
The value to check
If the value is not an integer number
If the number is not within valid Ruku range
checkValidRuku(5); // OKcheckValidRuku("5"); // Throws TypeErrorcheckValidRuku(999); // Throws RangeError Copy
checkValidRuku(5); // OKcheckValidRuku("5"); // Throws TypeErrorcheckValidRuku(999); // Throws RangeError
Type guard that checks if a value is a valid Ruku number.