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.
Tyme.js/src/Dictionaries/monthDictionary.ts

22 lines
305 B
TypeScript
Raw Normal View History

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