Fix safari test.

This commit is contained in:
John-David Dalton
2016-08-08 20:47:21 -07:00
parent e361c5a5b3
commit d8fa2f3e89

View File

@@ -2208,7 +2208,7 @@
* @returns {Array} Returns the array of property names.
*/
function arrayLikeKeys(value, inherited) {
var result = isArray(value)
var result = (isArray(value) || isArguments(value))
? baseTimes(value.length, String)
: [];