zhongshujie
5 天以前 639834607136666629f3f16f2e53638bd104c323
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}