( monthNumber: number, shorthand: boolean, locale: Locale )
| 30 | const doNothing = (): undefined => undefined; |
| 31 | |
| 32 | export const monthToStr = ( |
| 33 | monthNumber: number, |
| 34 | shorthand: boolean, |
| 35 | locale: Locale |
| 36 | ) => locale.months[shorthand ? "shorthand" : "longhand"][monthNumber]; |
| 37 | |
| 38 | export type RevFormatFn = ( |
| 39 | date: Date, |
no outgoing calls
no test coverage detected
searching dependent graphs…