yiming
2024-04-15 bf88b2ecaaddc09602e970dafc6a26aafaf68b67
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}