Package Exports
- rocambole-node-update
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 (rocambole-node-update) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Deprecated
The Rocambole project is no longer maintained.
rocambole-node-update 
Update a rocambole AST node
Install
$ npm install rocambole-node-update
Usage
const rocambole = require('rocambole');
const updateNode = require('rocambole-node-update');
rocambole.moonwalk('if (true) { foo() }', node => {
if (node.type === 'CallExpression') {
updateNode(node, 'bar()');
}
}).toString();
//=> 'if (true) { bar() }'
License
MIT © Sindre Sorhus