bug
litian
2024-07-12 1951e6ccf8dff46e6f8c671308f6e4db694fc800
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}