mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
export default function (timeout) {
|
|
return new Promise(resolve => {
|
|
setTimeout(() => {
|
|
resolve()
|
|
}, timeout)
|
|
})
|
|
}
|