comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
8 lines (7 loc) • 354 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const core = require("@vueuse/core");
const raf = (fn) => core.isClient ? window.requestAnimationFrame(fn) : setTimeout(fn, 16);
const caf = (handle) => core.isClient ? window.cancelAnimationFrame(handle) : clearTimeout(handle);
exports.caf = caf;
exports.raf = raf;