zhongshujie
2024-12-20 a9877004f436bb9f53173c1692de345726e0e521
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}