skiptimeline
v1.0.1
Published
A library that provides the implementation of SkipList and SkipTimeline, which you can use to manage discrete time points in continuous time.
Downloads
2
Readme
Introduction
A library that provides the implementation of SkipList and SkipTimeline, which you can use to manage discrete time points in continuous time.
Getting Started
Install from npm:
yarn add skiptimeline
Usage
const { SkipTimeline } = require('skiptimeline')
const timeList = [0, 10, 235.9, 768.8, 1000]
const callback = () => console.log('callback')
const once = true
const points = timeList.map(time => ({
time,
callback,
once
}))
const tl = new SkipTimeline(points)
tl.trigger(10, 768.8)
License
Distributed under the MIT License.