🐊Putout plugin adds ability to find and remove unused expressions
npm install @putout/plugin-remove-unused-expressions[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-unused-expressions.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-unused-expressions"npm"
🐊Putout plugin adds ability to find and remove unused expressions, excluding directives: use strict and use client.
```
npm i @putout/plugin-remove-unused-expressions -D
`json`
{
"rules": {
"remove-unused-expressions": "on"
}
}
`js`
function show(error) {
showError;
}
`js``
function show(error) {}
MIT