mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import isServer from './isServer'
|
|
|
|
let rAF = (fn: () => void) => setTimeout(fn, 16) as unknown as number
|
|
let cAF = (handle: number) => clearTimeout(handle)
|
|
|
|
if (!isServer) {
|
|
rAF = (fn: () => void) => window.requestAnimationFrame(fn)
|
|
cAF = (handle: number) => window.cancelAnimationFrame(handle)
|
|
}
|
|
|
|
export { rAF, cAF }
|