correct handling of inclusion of dependencies

This commit is contained in:
azivner
2018-02-18 10:47:02 -05:00
parent ddc885066e
commit fda4146150
3 changed files with 18 additions and 13 deletions

View File

@@ -116,8 +116,7 @@ async function stopWatch(what, func) {
}
function executeScript(script) {
// last \r\n is necessary if script contains line comment on its last line
eval("(async function() {" + script + "\r\n})()");
eval(script);
}
function formatValueWithWhitespace(val) {