(date: DateValue, locale: string)
| 411 | |
| 412 | /** Returns whether the given date is on a weekday in the given locale. */ |
| 413 | export function isWeekday(date: DateValue, locale: string): boolean { |
| 414 | return !isWeekend(date, locale); |
| 415 | } |
nothing calls this directly
no test coverage detected