@putout/plugin-remove-useless-replace
v2.0.0
Published
🐊Putout plugin adds ability to remove useless 'replace()'
Maintainers
Readme
@putout/plugin-remove-useless-replace 
The
replace()method returns a new string with some or all matches of apatternreplaced by areplacement. The original string is left unchanged.(c) MDN
🐊Putout plugin adds ability to remove useless replace.
Check it out in 🐊Putout Editor.
Install
npm i @putout/plugin-remove-useless-replaceRule
{
"rules": {
"remove-useless-replace": "on"
}
}❌ Example of incorrect code
const a = 'hello'.replace(b, b);✅ Example of correct code
const a = 'hello';License
MIT
