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

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 4.0.0
    269,203
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 4.0.0
    269,203
  • 3.0.0
    339,839
  • 2.1.0
    3,192,858
  • 2.0.0
    1,194
  • 1.0.1
    297,260
  • 1.0.0
    79
  • 0.1.2
    47,925
  • 0.1.1
    0
  • 0.1.0
    1

Package Sidebar

Install

npm i parse-ms

Weekly Downloads

4,148,359

Version

4.0.0

License

MIT

Unpacked Size

4.31 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus