Skip to content

Commit

Permalink
removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcherubini committed Oct 31, 2016
1 parent 0e5244f commit ce51819
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ function scriptParser(script, defaults, type) {
let scriptString = script.match(scriptRegex)[0].replace(scriptRegex, '$2');
let babelScript = require('babel-core').transform(scriptString, options);
// TODO: Remove EVAL!!!!!
console.log(babelScript.code);
let evalScript = eval(babelScript.code);
let finalScript = dataParser(evalScript, defaults, type);
return finalScript;
Expand Down

0 comments on commit ce51819

Please sign in to comment.