UNPKG
@cran/vue.use
Version:
latest (0.0.2)
0.0.2
0.0.1
Cranberry Vue Use Utilities
c6s.gitlab.io/lib/vue/use/modules.html
@cran/vue.use
/
mjs
/
animation
/
useRaf.js
5 lines
(4 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
import
{ useRepeat }
from
"./useRepeat"
;
export
function
useRaf
(
handler, { paused =
false
, } = {}
) {
return
useRepeat
(requestAnimationFrame, cancelAnimationFrame, handler, { paused, }); }