3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-23 10:39:35 +01:00
setup-python/node_modules/prompts/lib/dateparts/milliseconds.js

29 lines
588 B
JavaScript
Raw Normal View History

2019-06-27 03:12:00 +02:00
'use strict';
const DatePart = require('./datepart');
class Milliseconds extends DatePart {
constructor(opts={}) {
super(opts);
}
up() {
this.date.setMilliseconds(this.date.getMilliseconds() + 1);
}
down() {
this.date.setMilliseconds(this.date.getMilliseconds() - 1);
}
setTo(val) {
this.date.setMilliseconds(parseInt(val.substr(-(this.token.length))));
}
toString() {
return String(this.date.getMilliseconds()).padStart(4, '0')
.substr(0, this.token.length);
}
}
module.exports = Milliseconds;