seconds.js 499 B

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