vd
litian
2024-10-25 1a537273ca2d6f95f2043a7347e73ed41490913a
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}