| 18 | |
| 19 | /** A wrapper around Intl.DateTimeFormat that fixes various browser bugs, and polyfills new features. */ |
| 20 | export class DateFormatter implements Intl.DateTimeFormat { |
| 21 | private formatter: Intl.DateTimeFormat; |
| 22 | private options: Intl.DateTimeFormatOptions; |
| 23 | private resolvedHourCycle: Intl.DateTimeFormatOptions['hourCycle']; |
nothing calls this directly
no outgoing calls
no test coverage detected