diff --git a/lodash.src.js b/lodash.src.js index ec2ea55e6..7b71bde2c 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4571,7 +4571,7 @@ } var result = []; baseToString(value).replace(rePropName, function(match, number, quote, string) { - result.push(typeof string == 'string' ? string : (number || match)); + result.push(quote ? string : (number || match)); }); return result; }