litian
2024-09-30 e5f45ec9c2eabaa3e4241caad2d49c3629eaf0c8
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}