requestAnimationFrame.js 304 B

12345678
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.requestAnimationFrame = void 0;
  4. var requestAnimationFrame = typeof window === 'object' && window.requestAnimationFrame ? window.requestAnimationFrame : function (fn) {
  5. return setTimeout(fn, 16);
  6. };
  7. exports.requestAnimationFrame = requestAnimationFrame;