sleep.js 116 B

12345
  1. module.exports = async function sleep (ms) {
  2. await new Promise(rslv => {
  3. setTimeout(rslv, ms);
  4. })
  5. }