Spaces:
Sleeping
Sleeping
| module.exports = async function sleep (ms) { | |
| await new Promise(rslv => { | |
| setTimeout(rslv, ms); | |
| }) | |
| } | |
| module.exports = async function sleep (ms) { | |
| await new Promise(rslv => { | |
| setTimeout(rslv, ms); | |
| }) | |
| } | |