mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-03 01:13:55 +00:00
fix one with variable
This commit is contained in:
parent
a0b06c6197
commit
326e12d23a
@ -43,16 +43,15 @@ class CodeRunner {
|
||||
}
|
||||
const awaitIdx = code.indexOf('await');
|
||||
if (awaitIdx > -1) {
|
||||
let end = code.length;
|
||||
if (code[end - 1] === ';') {
|
||||
end--; // Remove the `;` because we add function calls
|
||||
}
|
||||
if (awaitIdx < 2) {
|
||||
let end = code.length;
|
||||
if (code[end - 1] === ';') {
|
||||
end--; // Remove the `;` because we add function calls
|
||||
}
|
||||
code = code.substring(5, end); // remove await keyword
|
||||
code += '.then(console.log).catch(console.error);'; // Add promise catch
|
||||
} else {
|
||||
code = code.substring(0, end); // remove ending `;`
|
||||
code = `(async function() {${code}.then(console.log);})();`;
|
||||
code = `(async function() {${code}})();`;
|
||||
}
|
||||
}
|
||||
let result = RunCode.doEval(code);
|
||||
|
Loading…
x
Reference in New Issue
Block a user