espree logging module
npm install @alu0101240374/espree-logging-module-alu0101240374Add Logging
=========
A small library providing utility methods adding logs
## Installation
npm install addLogging --save
## Usage
let {addLogging} = require('addLogging')
let code = console.log('html', html, 'escaped', escaped, 'unescaped', unescaped);
let logAdded = addLogging(code);
### Input:
``
function foo(a) {
return a
}
foo();
`
### Output
`Entering foo(${ a }) at line 1
function foo(a) {
console.log();`
return a;
}
foo();
## Executable usage
For execution write:
``
$ ./espree-logging-module-alu0101240374-linux
`
Usage: logging-espree-CLI [opciones]
espree logging module
Options:
-V, --version output the version number
-o, --output
-p --pattern
-h, --help display help for command
``
## 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
* 0.1.0 Initial release
* 0.2.0
* 0.2.1
* 0.2.2
* 0.3.0