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