actions/github/codeql-action-v2/node_modules/parse-ms
2026-01-31 18:56:04 +01:00
..
index.d.ts initial commit of actions 2026-01-31 18:56:04 +01:00
index.js initial commit of actions 2026-01-31 18:56:04 +01:00
license initial commit of actions 2026-01-31 18:56:04 +01:00
package.json initial commit of actions 2026-01-31 18:56:04 +01:00
readme.md initial commit of actions 2026-01-31 18:56:04 +01: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
}
*/