zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';
 
Object.defineProperty(exports, '__esModule', { value: true });
 
require('./browser.js');
var 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;
//# sourceMappingURL=raf.js.map