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