UNPKG

@putout/plugin-convert-bitwise-to-logical

Version:

🐊Putout plugin adds ability to convert bitwice to logical operator

10 lines (6 loc) 214 B
'use strict'; module.exports.report = () => 'Avoid using logical operator as operand of bitwise operator'; module.exports.replace = () => ({ '__a | !__b': '__a || !__b', '!__a | __b': '!__a || __b', });