mirror of
https://github.com/HeyPuter/puter.git
synced 2026-09-03 03:46:00 +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);
|
|
})
|
|
}
|