hms-parse
v1.0.0
Published
Parse hms time strings to and from seconds
Downloads
28
Maintainers
Readme
hms-parse
Parse hms time strings to and from seconds
Install
npm install --save hms-parse
Usage
const hms = require('hms-parse')
let seconds
seconds = hms.toSeconds(['1h', '45m', '10s']) // => 6310
seconds = hms.toSeconds(['45m', '10s']) // => 2710
seconds = hms.toSeconds(['10s']) // => 10
seconds = hms.toSeconds(['1s', '5S', '10m', '4M', '3h', '1H']) // => 15246
let timeString
timeString = hms.fromSeconds(6310) // => '1:45:10'
timeString = hms.fromSeconds(2710) // => '45:10'
timeString = hms.fromSeconds(10) // => '10s'