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 months of the year
|
|
*/
|
|
const monthDictionary: Array<string> = [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December"
|
|
];
|
|
|
|
|
|
export {
|
|
monthDictionary
|
|
}; |