@putout/plugin-convert-equal-to-strict-equal
v1.1.1
Published
šPutout plugin adds ability to convert equal to strict equal
Downloads
34,572
Maintainers
Readme
@putout/plugin-convert-equal-to-strict-equal
The strict equality operator (
===
) checks whether its two operands are equal, returning aBoolean
result. Unlike the equality operator (==
), the strict equality operator always considers operands of different types to be different.(c) MDN
šPutout plugin adds ability to convert equal to strict equal operator. Merged to @putout/plugin-conditions
.
Install
npm i @putout/plugin-convert-equal-to-strict-equal -D
Rule
{
"rules": {
"convert-equal-to-strict-equal": "off"
}
}
ā Example of incorrect code
if (a == b) {
}
ā Example of correct code
if (a === b) {
}
License
MIT