Convert milliseconds to other formats
$ npm install --save ms-to
const msTo = require('ms-to');
msTo(1000 * 60 * 60 * 24);
/*
{
days: 1,
hours: 24,
minutes: 1440,
seconds: 86400,
milliseconds: 86400000
}
*/
Type: number
Value in milliseconds to convert.
MIT © Kevin Martensson