mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +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
4 lines
102 B
TypeScript
4 lines
102 B
TypeScript
const sleep = (time = 0) => new Promise((resolve) => setTimeout(resolve, time))
|
|
|
|
export default sleep
|