This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const FIRST_MONTH_OF_THE_YEAR = 0; | |
const FIRST_DAY_OF_THE_MONTH = 1; | |
const DAYS_IN_A_WEEK = 7; | |
const THURSDAY_DAY_OF_THE_WEEK = 4; | |
const SUNDAY_DAY_OF_THE_WEEK = 7; | |
const TEN_DAYS_MILISECONDS = 86400000; | |
export type WeekOfYear = { | |
week: number; | |
year: number; |
OlderNewer