🐊Putout plugin adds ability apply if condition
npm install @putout/plugin-apply-if-condition[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-apply-if-condition.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-apply-if-condition"npm"
> The if statement executes a statement if a specified condition is truthy.
>
> (c) MDN
🐊Putout plugin adds ability to apply if condition. Merged to @putout/plugin-conditions.
```
npm i @putout/plugin-apply-if-condition
Rule apply-if-condition:
`json`
{
"rules": {
"apply-if-condition": "on"
}
}
`js`
if (2 > 3);
alert();
`js``
if (2 > 3)
alert();
MIT