Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

year.js 511B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. const DatePart = require('./datepart');
  3. class Year extends DatePart {
  4. constructor(opts = {}) {
  5. super(opts);
  6. }
  7. up() {
  8. this.date.setFullYear(this.date.getFullYear() + 1);
  9. }
  10. down() {
  11. this.date.setFullYear(this.date.getFullYear() - 1);
  12. }
  13. setTo(val) {
  14. this.date.setFullYear(val.substr(-4));
  15. }
  16. toString() {
  17. let year = String(this.date.getFullYear()).padStart(4, '0');
  18. return this.token.length === 2 ? year.substr(-2) : year;
  19. }
  20. }
  21. module.exports = Year;