### What it does
Checks for `replace` statements which have no effect.

### Why is this bad?
It's either a mistake or confusing.

### Example
```
"1234".replace("12", "12");
"1234".replacen("12", "12", 1);
```