google-map-react
Version:
isomorphic google map react component, allows render react components on the google map
13 lines (10 loc) • 357 B
JavaScript
;
exports.__esModule = true;
exports.default = raf;
function raf(callback) {
if (window.requestAnimationFrame) {
return window.requestAnimationFrame(callback);
}
var nativeRaf = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;
return nativeRaf ? nativeRaf(callback) : window.setTimeout(callback, 1e3 / 60);
}