mirror of
https://github.com/certd/certd.git
synced 2026-05-18 06:17:31 +08:00
6 lines
114 B
JavaScript
6 lines
114 B
JavaScript
export async function wait(ms) {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, ms);
|
|
});
|
|
}
|