🐊Putout plugin adds ability to remove boolean from assertions
npm install @putout/plugin-remove-boolean-from-assertions[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-boolean-from-assertions.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-boolean-from-assertions "npm"
🐊Putout plugin adds ability to remove boolean from assertions. Merged to @putout/plugin-conditions.
```
npm i @putout/plugin-remove-boolean-from-assertions
`json`
{
"rules": {
"remove-boolean-from-assertions": "on"
}
}
`js`
if (a === true)
alert();
`js``
if (a)
alert();
MIT