most-request-animation-frame
v1.1.0
Published
Create streams that emits every requestAnimationFrame
Readme
most-request-animation-frame -- 1.0.0
Create streams that emits every requestAnimationFrame
Get it
yarn add most-request-animation-frame
# or
npm install --save most-request-animation-frameAPI Documentation
All functions are curried!
requestAnimationFrames(): Stream<Time>
Creates a Stream containing the timestamps on each call to requestAnimationFrame.
export function requestAnimationFrames(): Stream<Time> {
return multicast(new RequestAnimationFrame())
}
