mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 20:58:28 +00:00
3 lines
89 B
JavaScript
3 lines
89 B
JavaScript
export function sleep(ms) {
|
|
return new Promise(resolve => setTimeout(resolve, ms));
|
|
} |