JSPM

parse-ms-edit

3.0.0-e
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21018F
  • License MIT

Parse milliseconds into an object with months,years

Package Exports

  • parse-ms-edit

Readme

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