@putout/plugin-convert-comparison-to-boolean
v3.0.3
Published
šPutout plugin adds ability to convert comparison to boolean
Downloads
35,732
Maintainers
Readme
@putout/plugin-convert-comparison-to-boolean
Strict equality compares two values for equality. Neither value is implicitly converted to some other value before being compared. If the values have different types, the values are considered unequal.
(c) MDN
šPutout plugin adds ability to find and convert binary expression
to boolean
. Merged to @putout/plugin-conditions
.
Install
npm i @putout/plugin-convert-comparison-to-boolean -D
Rule
{
"rules": {
"convert-comparison-to-boolean": "on"
}
}
ā Example of incorrect code
const t = 2 < 3;
ā Example of correct code
const t = false;
License
MIT