mirror of
https://github.com/nolanlawson/pinafore
synced 2025-01-08 09:12:42 +01:00
4 lines
92 B
JavaScript
4 lines
92 B
JavaScript
|
export function doubleRAF (fn) {
|
||
|
requestAnimationFrame(() => requestAnimationFrame(fn))
|
||
|
}
|