micro_mall_xcx/services/_utils/timeout.js
2023-05-30 20:21:16 +08:00

4 lines
100 B
JavaScript

export function timeout(ms = 1000) {
return new Promise((_, reject) => setTimeout(reject, ms));
}