()
| 21 | * @returns {Number} 0 (Sunday) through 6 (Saturday) |
| 22 | */ |
| 23 | const getFirstDayOfWeek = (): number | undefined => { |
| 24 | if (formatSettings === undefined) { |
| 25 | formatSettings = getFormatSettings(); |
| 26 | } |
| 27 | |
| 28 | return formatSettings.firstDayOfWeek; |
| 29 | }; |
| 30 | |
| 31 | const legacyDateFormats = getFeature<typeof LegacyDateFormats>("LegacyDateFormats"); |
| 32 |
no test coverage detected
searching dependent graphs…