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