diff options
author | Scoots Dash <contact@minteck.org> | 2022-04-23 14:12:30 +0000 |
---|---|---|
committer | Scoots Dash <contact@minteck.org> | 2022-04-23 14:12:30 +0000 |
commit | a927497b43cbe1438f3d7478932f3f7d03ea347c (patch) | |
tree | 0a3c88978b4294fb30afad58daa86c46fbedc2f6 /node_modules/prompts/dist/dateparts/day.js | |
parent | ba5fa694351774f2684c1aefdc215da5c6f39ba6 (diff) | |
parent | f0db5bbbcd623812a391862d217519afafe197c6 (diff) | |
download | twilight-trunk.tar.gz twilight-trunk.tar.bz2 twilight-trunk.zip |
Disable the Twilight Package Manager
See merge request minteck/twilight!1
Diffstat (limited to 'node_modules/prompts/dist/dateparts/day.js')
-rw-r--r-- | node_modules/prompts/dist/dateparts/day.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/node_modules/prompts/dist/dateparts/day.js b/node_modules/prompts/dist/dateparts/day.js deleted file mode 100644 index a525e92..0000000 --- a/node_modules/prompts/dist/dateparts/day.js +++ /dev/null @@ -1,35 +0,0 @@ -'use strict'; - -const DatePart = require('./datepart'); - -const pos = n => { - n = n % 10; - return n === 1 ? 'st' : n === 2 ? 'nd' : n === 3 ? 'rd' : 'th'; -}; - -class Day extends DatePart { - constructor(opts = {}) { - super(opts); - } - - up() { - this.date.setDate(this.date.getDate() + 1); - } - - down() { - this.date.setDate(this.date.getDate() - 1); - } - - setTo(val) { - this.date.setDate(parseInt(val.substr(-2))); - } - - toString() { - let date = this.date.getDate(); - let day = this.date.getDay(); - return this.token === 'DD' ? String(date).padStart(2, '0') : this.token === 'Do' ? date + pos(date) : this.token === 'd' ? day + 1 : this.token === 'ddd' ? this.locales.weekdaysShort[day] : this.token === 'dddd' ? this.locales.weekdays[day] : date; - } - -} - -module.exports = Day;
\ No newline at end of file |