remove console.log from rtStyle

This commit is contained in:
Omer Ganim 2016-05-15 16:13:01 +03:00
parent 8103d35585
commit 7a117400be
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@ function convertBody(text) {
//source
const obj = css.parse(text, {silent: false});
const result = _.reduce(obj.stylesheet.rules, processRule2, {});
console.log(result);
return JSON.stringify(result, undefined, 2);
}