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