forked from extern/easydiffusion
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