mirror of
https://github.com/google-map-react/google-map-react.git
synced 2026-01-25 15:08:05 +00:00
13 lines
319 B
JavaScript
13 lines
319 B
JavaScript
|
|
export default function raf(callback) {
|
|
if (window.requestAnimationFrame) {
|
|
return window.requestAnimationFrame(callback);
|
|
}
|
|
|
|
const nativeRaf = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;
|
|
|
|
return nativeRaf
|
|
? nativeRaf(callback)
|
|
: window.setTimeout(callback, 1e3 / 60);
|
|
}
|