Make _.unescape doc example align with _.escape. [ci skip]

This commit is contained in:
John-David Dalton
2014-09-09 23:33:05 -07:00
parent 967ce824f7
commit 678321bb2f

View File

@@ -8745,8 +8745,8 @@
* @returns {string} Returns the unescaped string.
* @example
*
* _.unescape('fred, barney & pebbles');
* // => 'fred, barney & pebbles'
* _.unescape('fred, barney, & pebbles');
* // => 'fred, barney, & pebbles'
*/
function unescape(string) {
string = string == null ? '' : String(string);