Quickly format duration time values in a condensed format.
npm install quiktime





!Snyk Vulnerabilities for GitHub Repo
Quickly format duration time values in a condensed format.
Via npm
``sh`
npm install quiktime
Via Yarn
`sh`
yarn add quiktime
Without Options
`
import quiktime from 'quiktime'
console.debug(quiktime(1200))
===
Output: 1.2 ms
`
With Options
`
import quiktime from 'quiktime
console.debug(quiktime(1234, { maximumFractionDigits: 3 }))
===
Output: 1.234 ms
``
* minimumIntegerDigits: number - The minimum number of integer digits to use. Possible values are from 1 to 21; the default is 1.minimumFractionDigits: number
* - The minimum number of fraction digits to use. Possible values are from 0 to 20; the default is 0.maximumFractionDigits: number
* - The maximum number of fraction digits to use. Possible values are from 0 to 20; the default is 2`