(hourCycle: DatetimeHourCycle)
| 77 | * and pass the result into this function. |
| 78 | */ |
| 79 | export const is24Hour = (hourCycle: DatetimeHourCycle) => { |
| 80 | return hourCycle === 'h23' || hourCycle === 'h24'; |
| 81 | }; |
| 82 | |
| 83 | /** |
| 84 | * Given a date object, returns the number |
no outgoing calls
no test coverage detected