1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-24 10:51:50 +01:00
Pinafore-Web-Client-Frontend/routes/_utils/doubleRAF.js

4 lines
92 B
JavaScript
Raw Normal View History

export function doubleRAF (fn) {
requestAnimationFrame(() => requestAnimationFrame(fn))
}