mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Fix Android 5.1 test fails.
This commit is contained in:
@@ -6052,6 +6052,7 @@
|
|||||||
* @returns {Array} Returns the array of symbols.
|
* @returns {Array} Returns the array of symbols.
|
||||||
*/
|
*/
|
||||||
var getSymbols = !nativeGetSymbols ? stubArray : function(object) {
|
var getSymbols = !nativeGetSymbols ? stubArray : function(object) {
|
||||||
|
object = Object(object);
|
||||||
return arrayFilter(nativeGetSymbols(object), function(symbol) {
|
return arrayFilter(nativeGetSymbols(object), function(symbol) {
|
||||||
return propertyIsEnumerable.call(object, symbol);
|
return propertyIsEnumerable.call(object, symbol);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user