source: frontend/node_modules/prompts/dist/dateparts/hours.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 551 bytes
Line 
1'use strict';
2
3const DatePart = require('./datepart');
4
5class Hours extends DatePart {
6 constructor(opts = {}) {
7 super(opts);
8 }
9
10 up() {
11 this.date.setHours(this.date.getHours() + 1);
12 }
13
14 down() {
15 this.date.setHours(this.date.getHours() - 1);
16 }
17
18 setTo(val) {
19 this.date.setHours(parseInt(val.substr(-2)));
20 }
21
22 toString() {
23 let hours = this.date.getHours();
24 if (/h/.test(this.token)) hours = hours % 12 || 12;
25 return this.token.length > 1 ? String(hours).padStart(2, '0') : hours;
26 }
27
28}
29
30module.exports = Hours;
Note: See TracBrowser for help on using the repository browser.