Travis build: 602

This commit is contained in:
Travis CI
2017-12-29 13:26:58 +00:00
parent 0a19f0867d
commit 998a3f741a
2 changed files with 2 additions and 2 deletions

View File

@ -3590,7 +3590,7 @@ truncateString('boomerang', 7); // 'boom...'
Unescapes escaped HTML characters.
Use `String.replace()` with a regex that matches the characters that need to be escaped, using a callback function to replace each escaped character instance with its associated unescaped character using a dictionary (object).
Use `String.replace()` with a regex that matches the characters that need to be unescaped, using a callback function to replace each escaped character instance with its associated unescaped character using a dictionary (object).
```js
const unescapeHTML = str =>