🐊Putout plugin adds ability to find and remove console.log calls
npm install @putout/plugin-remove-console[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-console.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-console "npm"
> The console.log() method outputs a message to the web console. The message may be a single string (with optional substitution values), or it may be any one or more JavaScript objects.
>
> (c) MDN
🐊Putout plugin adds ability to find and remove console.log calls.
```
npm i @putout/plugin-remove-console
`json`
{
"rules": {
"remove-console": "on"
}
}
`js`
const hello = 'world';
console.log(hello);
`js``
const hello = 'world';