Licence
MIT
Version
0.13.1
Deps
0
Vulns
0
Weekly
0
roole-parser
Take a string of Roole code, and output the ast.
Example
var parser = require('roole-parser');
var ast = parser.parse('body { margin: 0 }');
console.log(ast);
API
parser.parse(str, [options])
str- A string of Roole code.options- Object literal supports these options:- `filename - An string of absolute path of the file that contains this Roole code. If specified, each AST node will contain it in the location info.
loc(default:true) - A boolean denoting whether AST nodes should contain location info. If an object is passed, that object will be used directly as the location.