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