dwww Home | Show directory contents | Find package

# parse-ms

> Parse milliseconds into an object

## Install

```
$ npm install parse-ms
```

## Usage

```js
import parseMilliseconds from 'parse-ms';

parseMilliseconds(1337000001);
/*
{
        days: 15,
        hours: 11,
        minutes: 23,
        seconds: 20,
        milliseconds: 1,
        microseconds: 0,
        nanoseconds: 0
}
*/
```

## Related

- [to-milliseconds](https://github.com/sindresorhus/to-milliseconds) - The inverse of this module
- [pretty-ms](https://github.com/sindresorhus/pretty-ms) - Convert milliseconds to a human readable string

Generated by dwww version 1.16 on Mon Dec 8 06:04:10 CET 2025.