mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Merge branch 'master' of github.com:lodash/lodash
This commit is contained in:
@@ -6242,6 +6242,9 @@
|
|||||||
* Converts the characters `&`, `<`, `>`, `"`, and `'` in `string` to their
|
* Converts the characters `&`, `<`, `>`, `"`, and `'` in `string` to their
|
||||||
* corresponding HTML entities.
|
* corresponding HTML entities.
|
||||||
*
|
*
|
||||||
|
* Note: No other characters are escaped. To HTML-escape other characters as
|
||||||
|
* well, use a third-party library like [_he_](http://mths.be/he).
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @category Utilities
|
* @category Utilities
|
||||||
@@ -6764,10 +6767,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The inverse of `_.escape` this method converts the HTML entities
|
* The inverse of `_.escape`; this method converts the HTML entities
|
||||||
* `&`, `<`, `>`, `"`, and `'` in `string` to their
|
* `&`, `<`, `>`, `"`, and `'` in `string` to their
|
||||||
* corresponding characters.
|
* corresponding characters.
|
||||||
*
|
*
|
||||||
|
* Note: No other HTML entities are unescaped. To HTML-unescape other
|
||||||
|
* entities as well, use a third-party library like [_he_](http://mths.be/he).
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @category Utilities
|
* @category Utilities
|
||||||
|
|||||||
Reference in New Issue
Block a user