zhongshujie
13 小时以前 c0ff00c32bca4077b140d0d69b2863851ae31273
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}