@suchipi/esquery

A query library for ECMAScript AST using a CSS selector like query language.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@suchipi/esquery
702391.0.15 years ago5 years agoMinified + gzip package size for @suchipi/esquery in KB

Readme

This is a fork of ESQuery that lets you configure the method used to get keys for a given node, eg:
const customAst = {
  type: "Foo",
  children: [
    {
      type: "Bar",
      value: 5
    }
  ]
};

const esquery = require("esquery").configure({
  getKeys(node) {
    return Object.keys(node);
  }
});

esquery.query(customAst, "Foo > Bar[value=5]"); // [ { type: "Bar", value: 5 } ]