parse-ms
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

parse-ms

Parse milliseconds into an object

Install

npm install parse-ms

Usage

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

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
4.0.01,511,401latest

Version History

VersionDownloads (Last 7 Days)Published
4.0.01,511,401
3.0.0461,304
2.1.05,785,920
2.0.04,301
1.0.1546,842
1.0.0219
0.1.2100,616
0.1.14
0.1.04

Package Sidebar

Install

npm i parse-ms

Weekly Downloads

5,549,272

Version

4.0.0

License

MIT

Unpacked Size

4.31 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus