This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
|
/**
|
|
* A dictionary for all of the days of the week
|
|
*/
|
|
const dayDictionary: Array<string> = [
|
|
"Sunday",
|
|
"Monday",
|
|
"Tuesday",
|
|
"Wednesday",
|
|
"Thursday",
|
|
"Friday",
|
|
"Saturday",
|
|
];
|
|
|
|
|
|
export {
|
|
dayDictionary
|
|
}; |