mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 01:00:20 +08:00
parse-ms 
Parse milliseconds into an object
Install
$ npm install parse-ms
Usage
const parseMilliseconds = require('parse-ms');
parseMilliseconds(1337000001);
/*
{
days: 15,
hours: 11,
minutes: 23,
seconds: 20,
milliseconds: 1,
microseconds: 0,
nanoseconds: 0
}
*/
Related
- to-milliseconds - The inverse of this module
- pretty-ms - Convert milliseconds to a human readable string
License
MIT © Sindre Sorhus