Searched refs:daysInGivenMonth (Results 1 – 3 of 3) sorted by relevance
223 const daysInGivenMonth = daysInMonth(month);224 if (day < 1 || day > daysInGivenMonth) {225 …Error(`The day parameter for month ${month} must be between 1 and ${daysInGivenMonth}. Found: ${da…
1 …daysInGivenMonth = daysInMonth(month);\n if (day < 1 || day > daysInGivenMonth) {\n …
291 const daysInGivenMonth = daysInMonth(month); constant292 if (day < 1 || day > daysInGivenMonth) {294 … `The day parameter for month ${month} must be between 1 and ${daysInGivenMonth}. Found: ${day}`