QYF-GitLab1
5 天以前 0b04ed8c61813de116127100c5236bb2ff040682
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}