You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
511 B
29 lines
511 B
2 years ago
|
'use strict';
|
||
|
|
||
|
const DatePart = require('./datepart');
|
||
|
|
||
|
class Year extends DatePart {
|
||
|
constructor(opts = {}) {
|
||
|
super(opts);
|
||
|
}
|
||
|
|
||
|
up() {
|
||
|
this.date.setFullYear(this.date.getFullYear() + 1);
|
||
|
}
|
||
|
|
||
|
down() {
|
||
|
this.date.setFullYear(this.date.getFullYear() - 1);
|
||
|
}
|
||
|
|
||
|
setTo(val) {
|
||
|
this.date.setFullYear(val.substr(-4));
|
||
|
}
|
||
|
|
||
|
toString() {
|
||
|
let year = String(this.date.getFullYear()).padStart(4, '0');
|
||
|
return this.token.length === 2 ? year.substr(-2) : year;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = Year;
|