UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

8 lines (7 loc) 354 B
"use strict"; 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;