Skip to content

Commit d6e52d5

Browse files
Add mention of jsinspect for duplicate code detection
1 parent ddd0181 commit d6e52d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,9 @@ Never ever, ever, under any circumstance, have duplicate code. There's no reason
390390
for it and it's quite possibly the worst sin you can commit as a professional
391391
developer. Duplicate code means there's more than one place to alter something
392392
if you need to change some logic. JavaScript is untyped, so it makes having
393-
generic functions quite easy. Take advantage of that!
393+
generic functions quite easy. Take advantage of that! Tools like
394+
[jsinpect](https://github.com/danielstjules/jsinspect) can help you find duplicate
395+
code eligible for refactoring.
394396

395397
**Bad:**
396398
```javascript

0 commit comments

Comments
 (0)