_.unescape

_.unescape([string=''])

The inverse of _.escape; this method converts the HTML entities &ampamp;, &amplt;, &ampgt;, &ampquot;, and &amp#39; 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.

Since

0.6.0

Arguments

  1. [string=''] (string): The string to unescape.

Returns

(string): Returns the unescaped string.

Example

_.unescape('fred, barney, &ampamp; pebbles');
// => 'fred, barney, & pebbles'
doc_Lodash
2016-11-27 16:41:29
Comments
Leave a Comment

Please login to continue.