* The inverse of `_.escape` this method converts the HTML entities * `&`, `<`, `>`, `"`, and `'` in `string` to their * corresponding characters. * * @static * @memberOf _ * @category Utilities * @param {string} string The string to unescape.
(string)
| 41502 | * // => 'Fred, Barney & Pebbles' |
| 41503 | */ |
| 41504 | function unescape(string) { |
| 41505 | return string == null ? '' : String(string).replace(reEscapedHtml, unescapeHtmlChar); |
| 41506 | } |
| 41507 | |
| 41508 | /** |
| 41509 | * Generates a unique ID. If `prefix` is provided the ID will be appended to it. |
no outgoing calls
no test coverage detected