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