parse-ms-edit

Parse milliseconds into an object with months,years

Usage no npm install needed!

<script type="module">
  import parseMsEdit from 'https://cdn.skypack.dev/parse-ms-edit';
</script>

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

Related