File size: 121 Bytes
61d39e2
 
 
 
 
1
2
3
4
5
6
module.exports = async function sleep (ms) {
    await new Promise(rslv => {
        setTimeout(rslv, ms);
    })
}