mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-08 23:44:39 +02:00
Refactor the time delays into constants and mention the units
This commit is contained in:
@ -273,4 +273,10 @@ function BraceExpander() {
|
||||
return evaluated(dctParse);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function asyncDelay(timeout) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
setTimeout(resolve, timeout, true)
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user