Start to merge entries

This commit is contained in:
2021-04-21 18:27:42 +02:00
parent 79b8b8bd3c
commit bcfdb5ffee
3 changed files with 61 additions and 14 deletions

View File

@ -11,6 +11,10 @@ class Presence {
this.month = month;
this.day = day;
}
get date() {
return new Date(this.year, this.month - 1, this.day);
}
}