From 4081c2036a5af21519095da1b8b99c507b0fba93 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 17 Apr 2022 17:37:10 +0200 Subject: Deprecation --- .../prompts/dist/dateparts/milliseconds.js | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 node_modules/prompts/dist/dateparts/milliseconds.js (limited to 'node_modules/prompts/dist/dateparts/milliseconds.js') diff --git a/node_modules/prompts/dist/dateparts/milliseconds.js b/node_modules/prompts/dist/dateparts/milliseconds.js deleted file mode 100644 index 3440e3a..0000000 --- a/node_modules/prompts/dist/dateparts/milliseconds.js +++ /dev/null @@ -1,28 +0,0 @@ -'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; \ No newline at end of file -- cgit