b2d40befdc01b47abcf59c9c07e55eff78fa994dd6b7c140b2f0e4805c2c107d498c6cdf1a837950ee0d0852d407f647578f53ab7a4c78c828c78cc50b3e99 278 B

1234567
  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