2.1.1 • Published 3 years ago

@putout/plugin-convert-binary-expression-to-boolean v2.1.1

Weekly downloads
2,943
License
MIT
Repository
github
Last release
3 years ago

@putout/plugin-convert-binary-expression-to-boolean NPM version Dependency Status

putout plugin adds ability to find and convert binary expression to boolean. Renamed to @putout/plugin-convert-comparison-to-boolean.

Install

npm i @putout/plugin-convert-binary-expression-to-boolean -D

Rule

{
    "rules": {
        "convert-binary-expression-to-boolean": "on"
    }
}

❌ Incorrect code example

const t = 2 < 3;

✅ Correct code Example

const t = false;

License

MIT