版博士V2.0程序
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.

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