1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 14:26:45 +01:00
2018-03-29 23:16:53 -07:00

4 lines
92 B
JavaScript

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