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