mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
18 lines
266 B
TypeScript
18 lines
266 B
TypeScript
/**
|
|
*
|
|
* @param timer 等待时间
|
|
*
|
|
* @description
|
|
* 等待一段时间,模拟睡眠。
|
|
*
|
|
* @example
|
|
* await sleep(1000)
|
|
*/
|
|
const sleep = (timer: number) => {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, timer)
|
|
})
|
|
}
|
|
|
|
export default sleep
|