test02/node_modules/parse-ms
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00
..
index.d.ts first commit 2024-08-13 10:11:19 +08:00
index.js first commit 2024-08-13 10:11:19 +08:00
license first commit 2024-08-13 10:11:19 +08:00
package.json first commit 2024-08-13 10:11:19 +08:00
readme.md first commit 2024-08-13 10:11:19 +08:00

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
}
*/