You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
549 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = requestAnimationFrame;
function requestAnimationFrame(fn) {
var method = window.requestAnimationFrame ||
// @ts-ignore
window.webkitRequestAnimationFrame ||
// @ts-ignore
window.mozRequestAnimationFrame ||
// @ts-ignore
window.msRequestAnimationFrame ||
function (f) {
return setTimeout(f, 16);
};
return method(fn);
}
//# sourceMappingURL=request-animation-frame.js.map