mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
export default function wait (time) {
|
|
return new Promise(function (resolve, reject) {
|
|
setTimeout(function () {
|
|
resolve()
|
|
}, time * 3 || 1500)
|
|
})
|
|
}
|