UNPKG

284 BJavaScriptView Raw
1export default function scheduleRAF() {
2 let scheduledCb;
3 let RAF;
4 return function schedule(cb) {
5 scheduledCb = cb;
6 if (!RAF) {
7 RAF = window.requestAnimationFrame(() => {
8 scheduledCb();
9 RAF = null;
10 scheduledCb = null;
11 });
12 }
13 };
14}