Licence
MIT
Version
0.6.0
Deps
1
Vulns
0
Weekly
0
roole-compiler
Convert CSS AST to CSS string
Example
var parser = require('roole-parser');
var compiler = require('roole-compiler');
var ast = parser.parse('body { margin: 0 }');
var str = compiler.compile(ast);
console.log(str);
API
compiler.compile(node, [options]);
node- AST generated by roole-parseroptions- A hash object containing the following options:indent(default:'\t') - Indent string to use in CSSprecision(default:5) - Max number of decimal digits to use in CSS