diff options
Diffstat (limited to 'spec/env/browser.js')
-rw-r--r-- | spec/env/browser.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/env/browser.js b/spec/env/browser.js index c9414d4..8049dda 100644 --- a/spec/env/browser.js +++ b/spec/env/browser.js @@ -19,12 +19,12 @@ global.CompilerContext = { }; function safeEval(templateSpec) { - /*eslint-disable no-eval, no-console */ + /* eslint-disable no-eval, no-console */ try { return eval('(' + templateSpec + ')'); } catch (err) { console.error(templateSpec); throw err; } - /*eslint-enable no-eval, no-console */ + /* eslint-enable no-eval, no-console */ } |