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/tests/monthTest.ts
Kato Twofold f43baa895e + Initialized the Project
+ Setup the Month Parser
2022-05-06 00:45:27 +03:00

18 lines
358 B
TypeScript

import TymeJS from "../src";
for ( let i = 0; i < 12; i++ ) {
let currentMonth: Date = new Date();
currentMonth.setMonth(i)
const a = new TymeJS(currentMonth);
console.log({
single: a.getMonth("single"),
double: a.getMonth("double"),
full: a.getMonth("full"),
short: a.getMonth("short"),
});
}