@effectionx/raf
v0.2.0
Published
Subscribe to a stream of [Request Animation Frame](https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame) updates.
Downloads
129
Readme
RAF: Request Animation Frame
Subscribe to a stream of Request Animation Frame updates.
import { each, main, suspend } from "effection";
import { raf } from "@effectionx/raf";
await main(function* () {
for (const timestamp of yield* each(raf)) {
// add your handler code here
console.log(timestamp);
yield* each.next();
}
});