QYF-GitLab1
2024-12-23 d71ed79914076dbf7d9a1613402d6dba54f74482
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}