mirror of
https://github.com/HeyPuter/puter.git
synced 2025-02-02 23:28:39 +08:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
module.exports = async function sleep (ms) {
|
|
await new Promise(rslv => {
|
|
setTimeout(rslv, ms);
|
|
})
|
|
}
|