diff --git a/lodash.src.js b/lodash.src.js index a28637079..57deacf12 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4147,7 +4147,7 @@ * @returns {Array} Returns the array of symbols. */ var getSymbols = !getOwnPropertySymbols ? constant([]) : function(object) { - return object == null ? [] : getOwnPropertySymbols(toObject(object)); + return getOwnPropertySymbols(toObject(object)); }; /**