mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-30 10:18:02 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import { isClient } from '@vueuse/core'
|
|
|
|
export const rAF = (fn: () => void) =>
|
|
isClient
|
|
? window.requestAnimationFrame(fn)
|
|
: (setTimeout(fn, 16) as unknown as number)
|
|
|
|
export const cAF = (handle: number) =>
|
|
isClient ? window.cancelAnimationFrame(handle) : clearTimeout(handle)
|