aboutsummaryrefslogtreecommitdiff
path: root/node_modules/pretty-ms/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/pretty-ms/readme.md')
-rw-r--r--node_modules/pretty-ms/readme.md30
1 files changed, 20 insertions, 10 deletions
diff --git a/node_modules/pretty-ms/readme.md b/node_modules/pretty-ms/readme.md
index 2a1bf780f..01bab490b 100644
--- a/node_modules/pretty-ms/readme.md
+++ b/node_modules/pretty-ms/readme.md
@@ -6,11 +6,11 @@
## Usage
```
-$ npm install --save pretty-ms
+$ npm install pretty-ms
```
```js
-var prettyMs = require('pretty-ms');
+const prettyMs = require('pretty-ms');
prettyMs(1337000000);
//=> '15d 11h 23m 20s'
@@ -37,43 +37,53 @@ prettyMs(new Date(2014, 0, 1, 10, 40) - new Date(2014, 0, 1, 10, 5))
## API
-### prettyMs(milliseconds, [options])
+### prettyMs(input, [options])
-#### milliseconds
+#### input
-*Required*
Type: `number`
Milliseconds to humanize.
#### options
+Type: `Object`
+
##### secDecimalDigits
-Type: `number`
+Type: `number`<br>
Default: `1`
Number of digits to appear after the seconds decimal point.
##### msDecimalDigits
-Type: `number`
+Type: `number`<br>
Default: `0`
Number of digits to appear after the milliseconds decimal point.
Useful in combination with [`process.hrtime()`](https://nodejs.org/api/process.html#process_process_hrtime).
+##### keepDecimalsOnWholeSeconds
+
+Type: `boolean`<br>
+Default: `false`
+
+Keep milliseconds on whole seconds: `13s` → `13.0s`.
+
+Useful when you are showing a number of seconds spent on an operation and don't want the width of the output to change when hitting a whole number.
+
##### compact
-Type: `boolean`
+Type: `boolean`<br>
Default: `false`
Only show the first unit: `1h 10m` → `~1h`.
##### verbose
-Type: `boolean`
+Type: `boolean`<br>
Default: `false`
Use full-length units: `5h 1m 45s` → `5 hours 1 minute 45 seconds`
@@ -86,4 +96,4 @@ Use full-length units: `5h 1m 45s` → `5 hours 1 minute 45 seconds`
## License
-MIT © [Sindre Sorhus](http://sindresorhus.com)
+MIT © [Sindre Sorhus](https://sindresorhus.com)