+ Initialized the Project
+ Setup the Month Parser
This commit is contained in:
22
src/Dictionaries/monthDictionary.ts
Normal file
22
src/Dictionaries/monthDictionary.ts
Normal 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
|
||||
};
|
||||
Reference in New Issue
Block a user