mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-04 16:40:41 +00:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
module.exports = async function sleep (ms) {
|
|
await new Promise(rslv => {
|
|
setTimeout(rslv, ms);
|
|
})
|
|
}
|