Blame | Last modification | View Log | RSS feed
# ms.js: miliseconds conversion utility```jsms('2 days') // 172800000ms('1d') // 86400000ms('10h') // 36000000ms('2.5 hrs') // 9000000ms('2h') // 7200000ms('1m') // 60000ms('5s') // 5000ms('100') // 100``````jsms(60000) // "1m"ms(2 * 60000) // "2m"ms(ms('10 hours')) // "10h"``````jsms(60000, { long: true }) // "1 minute"ms(2 * 60000, { long: true }) // "2 minutes"ms(ms('10 hours'), { long: true }) // "10 hours"```- Node/Browser compatible. Published as [`ms`](https://www.npmjs.org/package/ms) in [NPM](http://nodejs.org/download).- If a number is supplied to `ms`, a string with a unit is returned.- If a string that contains the number is supplied, it returns it asa number (e.g: it returns `100` for `'100'`).- If you pass a string with a number and a valid unit, the number ofequivalent ms is returned.## LicenseMIT