requestAnimationFrame.js 204 B

1234567
  1. "use strict";
  2. module.exports = {
  3. requestAnimationFrame: typeof window === 'object' && window.requestAnimationFrame ? window.requestAnimationFrame : function (fn) {
  4. return setTimeout(fn, 16);
  5. }
  6. };