ast-visitor
v1.1.0
Published
An universal ast visitor
Downloads
22
Readme
ast-visitor
Install
npm i ast-visitor
Usage
import { visit } from 'ast-visitor'
visit( ast, path => {
console.log( path )
}, {
getType: node => node.type, // read node.type by default
getChildren: node => node.children, // read node.children by default
keys: {
Property: [ 'key', 'value' ],
},
} )
License
MIT © fengzilong