fe_interview icon indicating copy to clipboard operation
fe_interview copied to clipboard

实现一个 sleep 函数

Open Cosen95 opened this issue 4 years ago • 1 comments

Cosen95 avatar Mar 04 '20 09:03 Cosen95

async function sleep(time = 0) {
  return await new Promise(function(resolve) {
    setTimeout(resolve, time)
  })
}

lovefishs avatar Mar 23 '20 11:03 lovefishs