README
espree-logging
A small library providing the addLogging utility, which adds logging messages to all declared functions in a given JavaScript code.
Installation
npm install @alu0101233598/espree-logging --save
Usage
const { addLogging } = require('@alu0101233598/espree-logging');
const code = `function foo(a, b) {
var x = 'blah';
}`;
addLogging(code);
Tests
npm test
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
Release History
1.2.0Added colorized ouput1.1.0Added RegEx support1.0.0Initial release