mirror of
https://github.com/PaiGramTeam/luoxu-api-pub.git
synced 2024-11-29 10:43:12 +00:00
7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
|
export function sleep(ms: number) {
|
||
|
const p = new Promise((resolve, reject) => {
|
||
|
setTimeout(resolve, ms);
|
||
|
});
|
||
|
return p;
|
||
|
}
|