Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/parse-ms
Parse milliseconds into an object
https://github.com/sindresorhus/parse-ms
milliseconds npm-package parse parse-milliseconds
Last synced: 12 days ago
JSON representation
Parse milliseconds into an object
- Host: GitHub
- URL: https://github.com/sindresorhus/parse-ms
- Owner: sindresorhus
- License: mit
- Created: 2014-03-20T21:12:13.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-05-04T18:52:06.000Z (6 months ago)
- Last Synced: 2024-10-29T22:38:30.403Z (13 days ago)
- Topics: milliseconds, npm-package, parse, parse-milliseconds
- Language: JavaScript
- Size: 20.5 KB
- Stars: 119
- Watchers: 6
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
README
# parse-ms
> Parse milliseconds into an object
## Install
```sh
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
}
*/parseMilliseconds(1337000001n);
/*
{
days: 15n,
hours: 11n,
minutes: 23n,
seconds: 20n,
milliseconds: 1n,
microseconds: 0n,
nanoseconds: 0n
}
*/
```## 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