Package Exports
- bo-selector
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bo-selector) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
bo-selector
A CSS selector parser based on jison
Example
var parser = require('./bo-selector').parser;
var ast = parser.parse(".a[b = c], c[d]:e:f(g *:h:i[j]:k), :l > m[n ~= 'o']");
console.log(require('util').inspect(ast, false, null));
...generates:
{ type: 'selector_list',
selectors:
[ { type: 'constraint_list',
constraints:
[ { type: 'class', name: 'a' },
{ type: 'attribute_equals', name: 'b', value: 'c' } ] },
{ type: 'element',
name: 'c',
constraints:
[ { type: 'has_attribute', name: 'd' },
{ type: 'pseudo_class', name: 'e' },
{ type: 'pseudo_func',
func:
{ type: 'function',
name: 'f',
args:
{ type: 'selector_list',
selectors:
[ { type: 'combinator_selector',
left: { type: 'element', name: 'g', constraints: [] },
right:
{ type: 'element',
name: '*',
constraints:
[ { type: 'pseudo_class', name: 'h' },
{ type: 'pseudo_class', name: 'i' },
{ type: 'has_attribute', name: 'j' },
{ type: 'pseudo_class', name: 'k' } ] },
combinator: 'descendant' } ] } } } ] },
{ type: 'combinator_selector',
left:
{ type: 'constraint_list',
constraints: [ { type: 'pseudo_class', name: 'l' } ] },
right:
{ type: 'element',
name: 'm',
constraints: [ { type: 'attribute_contains_word', name: 'n', value: 'o' } ] },
combinator: 'child' } ] }
Bo?
Craig David - Bo' Selecta Ruined My Life
License
BSD