summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/unescape.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/unescape.js')
-rw-r--r--tools/eslint/node_modules/lodash/unescape.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/eslint/node_modules/lodash/unescape.js b/tools/eslint/node_modules/lodash/unescape.js
index 046893366d..929bb1675d 100644
--- a/tools/eslint/node_modules/lodash/unescape.js
+++ b/tools/eslint/node_modules/lodash/unescape.js
@@ -7,14 +7,15 @@ var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,
/**
* The inverse of `_.escape`; this method converts the HTML entities
- * `&`, `<`, `>`, `"`, `'`, and ``` in `string` to their
- * corresponding characters.
+ * `&`, `<`, `>`, `"`, `'`, and ``` in `string` to
+ * their corresponding characters.
*
- * **Note:** No other HTML entities are unescaped. To unescape additional HTML
- * entities use a third-party library like [_he_](https://mths.be/he).
+ * **Note:** No other HTML entities are unescaped. To unescape additional
+ * HTML entities use a third-party library like [_he_](https://mths.be/he).
*
* @static
* @memberOf _
+ * @since 0.6.0
* @category String
* @param {string} [string=''] The string to unescape.
* @returns {string} Returns the unescaped string.