import './browser.mjs';
import { isClient } from '@vueuse/core';
const rAF = (fn) => isClient ? requestAnimationFrame(fn) : setTimeout(fn, 16);
const cAF = (handle) => isClient ? cancelAnimationFrame(handle) : clearTimeout(handle);
export { cAF, rAF };