time-ranges
v0.1.0
Published
Standalone implementation of the HTML5 Media TimeRanges interface.
Downloads
1,435
Maintainers
Keywords
Readme
time-ranges
Standalone implementation of the HTML5 Media TimeRanges
interface. Always normalized.
Installation
npm i --save time-ranges
Usage
import TimeRanges from 'time-ranges'
const timeRanges = new TimeRanges()
timeRanges.add(1, 2)
timeRanges.add(3, 4)
for (let i = 0; i < timeRanges.length; ++i) {
const start = timeRanges.start(i)
const end = timeRanges.end(i)
console.log(`Range ${i}: ${start} → ${end}`)
}
// Output:
// Range 0: 1 → 2
// Range 1: 3 → 4
Maintainer
License
MIT