1.0.0 • Published 11 years ago

cssauron-json v1.0.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

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