Check if given is a string representing a CronNearestDayOfMonth.
CronNearestDayOfMonth
isStringNearestDayOfMonth("10W"); // trueisStringNearestDayOfMonth("10w"); // trueisStringNearestDayOfMonth("100w"); // falseisStringNearestDayOfMonth("INVALID"); // false
Returns true if is a string representing a CronNearestDayOfMonth, false otherwise.
true
false
Value to check.
Check if given is a string representing a
CronNearestDayOfMonth
.Example
Returns
Returns
true
if is a string representing aCronNearestDayOfMonth
,false
otherwise.