litian
2025-03-27 c03853bf7e9594bcbef3cfe087b313d18aacb4bb
1
2
3
export function timeout(ms = 1000) {
  return new Promise((_, reject) => setTimeout(reject, ms));
}