diff --git a/lodash.js b/lodash.js index 030fd0e46..211c3f67f 100644 --- a/lodash.js +++ b/lodash.js @@ -6052,6 +6052,7 @@ * @returns {Array} Returns the array of symbols. */ var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + object = Object(object); return arrayFilter(nativeGetSymbols(object), function(symbol) { return propertyIsEnumerable.call(object, symbol); });