Sha256: d5cfc28829668c88436ed06a7e1f4db2eff40521985c86bf5af9fc816d68d9bf

Contents?: true

Size: 662 Bytes

Versions: 9

Compression:

Stored size: 662 Bytes

Contents

# ms.js: miliseconds conversion utility

```js
ms('1d')      // 86400000
ms('10h')     // 36000000
ms('2h')      // 7200000
ms('1m')      // 60000
ms('5s')      // 5000
ms('100')     // 100
ms(100)       // 100
```

```js
ms(60000)             // "1 minute"
ms(2 * 60000)         // "2 minutes"
ms(ms('10 hours'))    // "10 hours"
```

- Node/Browser compatible. Published as `ms` in NPM.
- If a number is supplied to `ms`, it returns it immediately.
- If a string that contains the number is supplied, it returns it as
a number (e.g: it returns `100` for `'100'`).
- If you pass a string with a number and a valid unit, the number of
equivalent ms is returned.

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
stylus-source-0.34.1 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.34.0 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.33.1 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.33.0 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.32.1 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.32.0 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.31.0 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.30.1 vendor/node_modules/mocha/node_modules/ms/README.md
stylus-source-0.30.0 vendor/node_modules/mocha/node_modules/ms/README.md