Check if given is a string representing a CronMonthValue.
CronMonthValue
isStringMonthValue("10"); // trueisStringMonthValue("OCT"); // trueisStringMonthValue("oct"); // trueisStringMonthValue("OCTOBER"); // falseisStringMonthValue("50"); // falseisStringMonthValue("INVALID"); // false
Returns true if is a string representing a CronMonthValue, false otherwise.
true
false
Value to check.
Check if given is a string representing a
CronMonthValue
.Example
Returns
Returns
true
if is a string representing aCronMonthValue
,false
otherwise.