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