3 lines
77 B
JavaScript
3 lines
77 B
JavaScript
|
export function sleep(ms) {
|
||
|
return new Promise(_ => setTimeout(_, ms));
|
||
|
}
|