This repository has been archived on 2024-01-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tyme.js/src/Dictionaries/monthDictionary.ts
Kato Twofold f43baa895e + Initialized the Project
+ Setup the Month Parser
2022-05-06 00:45:27 +03:00

22 lines
305 B
TypeScript

/**
* 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
};