* Changed the valid inputs to actually conform to a standard

* Fixed a bunch of bugs
+ Year
This commit is contained in:
2022-05-07 13:49:57 +03:00
parent c596812d30
commit a88351922f
4 changed files with 132 additions and 51 deletions

View File

@@ -1,18 +1,18 @@
import TymeJS from "../src";
let startDate: Date = new Date();
let d: Date = new Date();
for ( let i = 0; i < 7; i++ ) {
const a = new TymeJS(startDate);
console.log(startDate, {
single: a.getDate("single"),
double: a.getDate("double"),
dowsingle: a.getDate("dowsingle"),
dowdouble: a.getDate("dowdouble"),
full: a.getDate("long"),
short: a.getDate("short"),
const a = new TymeJS(d);
console.log(d, {
single: a.getDate("j"),
double: a.getDate("d"),
dowdouble: a.getDate("w"),
full: a.getDate("l"),
short: a.getDate("D"),
});
startDate.setDate(startDate.getDate() + 1);
d.setDate(d.getDate() + 1);
}

View File

@@ -8,10 +8,10 @@ for ( let i = 0; i < 12; i++ ) {
const a = new TymeJS(currentMonth);
console.log({
single: a.getMonth("single"),
double: a.getMonth("double"),
full: a.getMonth("long"),
short: a.getMonth("short"),
single: a.getMonth("n"),
double: a.getMonth("m"),
full: a.getMonth("F"),
short: a.getMonth("M"),
});
}