roole-parser

0.13.1 • Public • Published

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.

/roole-parser/

    Package Sidebar

    Install

    npm i roole-parser

    Weekly Downloads

    19

    Version

    0.13.1

    License

    MIT

    Last publish

    Collaborators

    • curvedmark