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