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