版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

28 righe
541 B

  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;