Skip to content

Commit 57b3ef8

Browse files
committed
Use prettier and eslint
1 parent 94068ea commit 57b3ef8

File tree

2 files changed

+63
-41
lines changed

2 files changed

+63
-41
lines changed

index.js

+39-36
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* Helpers.
33
*/
44

5-
var s = 1000
6-
var m = s * 60
7-
var h = m * 60
8-
var d = h * 24
9-
var y = d * 365.25
5+
var s = 1000;
6+
var m = s * 60;
7+
var h = m * 60;
8+
var d = h * 24;
9+
var y = d * 365.25;
1010

1111
/**
1212
* Parse or format the given `val`.
@@ -22,18 +22,19 @@ var y = d * 365.25
2222
* @api public
2323
*/
2424

25-
module.exports = function (val, options) {
26-
options = options || {}
27-
var type = typeof val
25+
module.exports = function(val, options) {
26+
options = options || {};
27+
var type = typeof val;
2828
if (type === 'string' && val.length > 0) {
29-
return parse(val)
29+
return parse(val);
3030
} else if (type === 'number' && isNaN(val) === false) {
31-
return options.long ?
32-
fmtLong(val) :
33-
fmtShort(val)
31+
return options.long ? fmtLong(val) : fmtShort(val);
3432
}
35-
throw new Error('val is not a non-empty string or a valid number. val=' + JSON.stringify(val))
36-
}
33+
throw new Error(
34+
'val is not a non-empty string or a valid number. val=' +
35+
JSON.stringify(val)
36+
);
37+
};
3738

3839
/**
3940
* Parse the given `str` and return milliseconds.
@@ -44,53 +45,55 @@ module.exports = function (val, options) {
4445
*/
4546

4647
function parse(str) {
47-
str = String(str)
48+
str = String(str);
4849
if (str.length > 10000) {
49-
return
50+
return;
5051
}
51-
var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(str)
52+
var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(
53+
str
54+
);
5255
if (!match) {
53-
return
56+
return;
5457
}
55-
var n = parseFloat(match[1])
56-
var type = (match[2] || 'ms').toLowerCase()
58+
var n = parseFloat(match[1]);
59+
var type = (match[2] || 'ms').toLowerCase();
5760
switch (type) {
5861
case 'years':
5962
case 'year':
6063
case 'yrs':
6164
case 'yr':
6265
case 'y':
63-
return n * y
66+
return n * y;
6467
case 'days':
6568
case 'day':
6669
case 'd':
67-
return n * d
70+
return n * d;
6871
case 'hours':
6972
case 'hour':
7073
case 'hrs':
7174
case 'hr':
7275
case 'h':
73-
return n * h
76+
return n * h;
7477
case 'minutes':
7578
case 'minute':
7679
case 'mins':
7780
case 'min':
7881
case 'm':
79-
return n * m
82+
return n * m;
8083
case 'seconds':
8184
case 'second':
8285
case 'secs':
8386
case 'sec':
8487
case 's':
85-
return n * s
88+
return n * s;
8689
case 'milliseconds':
8790
case 'millisecond':
8891
case 'msecs':
8992
case 'msec':
9093
case 'ms':
91-
return n
94+
return n;
9295
default:
93-
return undefined
96+
return undefined;
9497
}
9598
}
9699

@@ -104,18 +107,18 @@ function parse(str) {
104107

105108
function fmtShort(ms) {
106109
if (ms >= d) {
107-
return Math.round(ms / d) + 'd'
110+
return Math.round(ms / d) + 'd';
108111
}
109112
if (ms >= h) {
110-
return Math.round(ms / h) + 'h'
113+
return Math.round(ms / h) + 'h';
111114
}
112115
if (ms >= m) {
113-
return Math.round(ms / m) + 'm'
116+
return Math.round(ms / m) + 'm';
114117
}
115118
if (ms >= s) {
116-
return Math.round(ms / s) + 's'
119+
return Math.round(ms / s) + 's';
117120
}
118-
return ms + 'ms'
121+
return ms + 'ms';
119122
}
120123

121124
/**
@@ -131,7 +134,7 @@ function fmtLong(ms) {
131134
plural(ms, h, 'hour') ||
132135
plural(ms, m, 'minute') ||
133136
plural(ms, s, 'second') ||
134-
ms + ' ms'
137+
ms + ' ms';
135138
}
136139

137140
/**
@@ -140,10 +143,10 @@ function fmtLong(ms) {
140143

141144
function plural(ms, n, name) {
142145
if (ms < n) {
143-
return
146+
return;
144147
}
145148
if (ms < n * 1.5) {
146-
return Math.floor(ms / n) + ' ' + name
149+
return Math.floor(ms / n) + ' ' + name;
147150
}
148-
return Math.ceil(ms / n) + ' ' + name + 's'
151+
return Math.ceil(ms / n) + ' ' + name + 's';
149152
}

package.json

+24-5
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,37 @@
88
"index.js"
99
],
1010
"scripts": {
11+
"precommit": "lint-staged",
12+
"lint": "eslint lib/* bin/*",
1113
"test": "mocha test/index.js",
1214
"test-browser": "serve ./test"
1315
},
14-
"license": "MIT",
15-
"devDependencies": {
16-
"expect.js": "0.3.1",
17-
"mocha": "3.0.2",
18-
"serve": "5.0.4",
16+
"eslintConfig": {
17+
"extends": "eslint:recommended",
18+
"env": {
19+
"node": true,
20+
"es6": true
21+
}
22+
},
23+
"lint-staged": {
24+
"*.js": [
25+
"npm run lint",
26+
"prettier --single-quote --write",
27+
"git add"
28+
]
1929
},
2030
"component": {
2131
"scripts": {
2232
"ms/index.js": "index.js"
2333
}
34+
},
35+
"license": "MIT",
36+
"devDependencies": {
37+
"eslint": "3.18.0",
38+
"expect.js": "0.3.1",
39+
"husky": "0.13.2",
40+
"lint-staged": "3.4.0",
41+
"mocha": "3.0.2",
42+
"serve": "5.0.4"
2443
}
2544
}

0 commit comments

Comments
 (0)