mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Fix safari test.
This commit is contained in:
@@ -2208,7 +2208,7 @@
|
|||||||
* @returns {Array} Returns the array of property names.
|
* @returns {Array} Returns the array of property names.
|
||||||
*/
|
*/
|
||||||
function arrayLikeKeys(value, inherited) {
|
function arrayLikeKeys(value, inherited) {
|
||||||
var result = isArray(value)
|
var result = (isArray(value) || isArguments(value))
|
||||||
? baseTimes(value.length, String)
|
? baseTimes(value.length, String)
|
||||||
: [];
|
: [];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user