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.

milliseconds.js 541B

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