4.17.11
3.10.1
2.4.2
1.3.1
_.unescape([string=''])
The inverse of _.escape; this method converts the HTML entities
&, <, >, ", 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.
Since
0.6.0
Arguments
argument
[string='']type
string
description
The string to unescape.
Returns
(array)Example
_.unescape(
"fred, barney, & pebbles"
);
// => 'fred, barney, & pebbles'
_.unescape("fred, barney, & pebbles");
// => 'fred, barney, & pebbles'