+ Initialized the Project

+ Setup the Month Parser
This commit is contained in:
2022-05-06 00:45:27 +03:00
commit f43baa895e
7 changed files with 239 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/**
* 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
};