Merge branch 'beta' into mdiller_settings

This commit is contained in:
Malcolm Diller
2022-10-21 17:16:50 -07:00
10 changed files with 252 additions and 133 deletions

View File

@ -335,4 +335,10 @@ function BraceExpander() {
return evaluated(dctParse);
}
}
}
function asyncDelay(timeout) {
return new Promise(function(resolve, reject) {
setTimeout(resolve, timeout, true)
})
}