From a513163d466a9c72825898108cc655874f7afb10 Mon Sep 17 00:00:00 2001 From: Ryan McBride Date: Fri, 3 Jul 2015 19:50:52 -0700 Subject: [PATCH] Update to include warning against using eval. Added 6.5 to strings section of Readme in order to explicitly warn against using eval(). Listed in ticket #118. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 38aefa55..c41a42a0 100644 --- a/README.md +++ b/README.md @@ -443,6 +443,7 @@ return `How are you, ${name}?`; } ``` + - [6.5](#6.5) Never use eval() on a string, it opens too many vulnerabilities. **[⬆ back to top](#table-of-contents)**