From f06a34c2a7ca763314b2a920e936f683ab0cf230 Mon Sep 17 00:00:00 2001 From: Bruno Scheufler <4772980+BrunoScheufler@users.noreply.github.com> Date: Sat, 29 Dec 2018 09:57:38 +0000 Subject: [PATCH] Update README.md Co-Authored-By: Berkmann18 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e22d0be5..cfdcba84 100644 --- a/README.md +++ b/README.md @@ -957,7 +957,7 @@ All statements above will return false if used with `===` ## ![✔] 7.1. Prefer native JS methods over user-land utils like Lodash -**TL;DR:** It's often more penalising to use utility libraries like `lodash` and `underscore` over using native methods as it leads to uneeded dependencies with less performance boost. + **TL;DR:** It's often more penalising to use utility libraries like `lodash` and `underscore` over native methods as it leads to unneeded dependencies and slower performance. **Otherwise:** You'll have to maintain (slightly) bigger projects where you could have simply used what was **already** available or dealt with a few more lines in exchange of a few more files.