clear-animation-frame.js 474 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function cancelAnimationFrame(handler) {
  4. var method = window.cancelAnimationFrame ||
  5. window.webkitCancelAnimationFrame ||
  6. // @ts-ignore
  7. window.mozCancelAnimationFrame ||
  8. // @ts-ignore
  9. window.msCancelAnimationFrame ||
  10. clearTimeout;
  11. method(handler);
  12. }
  13. exports.default = cancelAnimationFrame;
  14. ;
  15. //# sourceMappingURL=clear-animation-frame.js.map