cssauron-json
v1.0.0
Published
css sauron config for json
Downloads
9
Readme
cssauron-json
CSSauron preconfigured for JSON nodes emitted from json-parse-stream.
var css = require('cssauron-json')
, json = require('json-parse-stream')()
var sel = css('.key > .val')
json.write('{"key": {"val": 3, "key": 2}}')
.on('data', function(node) {
if(sel(node)) {
console.log(node) // emits for top level key only
}
})
api
.class
maps to the key
attribute of a node.
tag
queries may be object
, array
, string
, number
, null
, boolean
.
>
operators are allowed, but ~
and +
are not.
License
MIT