You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
.. | ||
index.d.ts | 2 months ago | |
index.js | 2 months ago | |
license | 2 months ago | |
package.json | 2 months ago | |
readme.md | 2 months ago |
readme.md
parse-ms
Parse milliseconds into an object
Install
npm install parse-ms
Usage
import parseMilliseconds from 'parse-ms';
parseMilliseconds(1337000001);
/*
{
days: 15,
hours: 11,
minutes: 23,
seconds: 20,
milliseconds: 1,
microseconds: 0,
nanoseconds: 0
}
*/
parseMilliseconds(1337000001n);
/*
{
days: 15n,
hours: 11n,
minutes: 23n,
seconds: 20n,
milliseconds: 1n,
microseconds: 0n,
nanoseconds: 0n
}
*/
Related
- to-milliseconds - The inverse of this module
- pretty-ms - Convert milliseconds to a human readable string