Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.23 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.23 KB

time-ranges

npm Dependencies Build Status Coverage Status JavaScript Standard Style

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

Tim De Pauw

License

MIT