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.

7 lines
278 B

  1. import { isClient } from '@vueuse/core';
  2. const rAF = (fn) => isClient ? window.requestAnimationFrame(fn) : setTimeout(fn, 16);
  3. const cAF = (handle) => isClient ? window.cancelAnimationFrame(handle) : clearTimeout(handle);
  4. export { cAF, rAF };
  5. //# sourceMappingURL=raf.mjs.map