mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
|
export default function timeout (time) {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
setTimeout(resolve, time || 1500)
|
||
|
})
|
||
|
}
|