diff --git a/lodash.js b/lodash.js index e42407dca..38b4535f6 100644 --- a/lodash.js +++ b/lodash.js @@ -5624,7 +5624,7 @@ * @param {Object} object The object to query. * @returns {Array} Returns the array of symbols. */ - var getSymbolsIn = !nativeGetSymbols ? getSymbols : function(object) { + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { var result = []; while (object) { arrayPush(result, getSymbols(object));