1.0.0 • Published 6 years ago

hms-parse v1.0.0

Weekly downloads
17
License
MIT
Repository
github
Last release
6 years ago

hms-parse npm downloads tests maintained

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'