mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Ensure _.has returns the correct result for nested sparse arrays. [closes #2614]
This commit is contained in:
10
lodash.js
10
lodash.js
@@ -5930,9 +5930,9 @@
|
||||
function hasPath(object, path, hasFunc) {
|
||||
path = isKey(path, object) ? [path] : castPath(path);
|
||||
|
||||
var result,
|
||||
index = -1,
|
||||
length = path.length;
|
||||
var index = -1,
|
||||
length = path.length,
|
||||
result = false;
|
||||
|
||||
while (++index < length) {
|
||||
var key = toKey(path[index]);
|
||||
@@ -5941,10 +5941,10 @@
|
||||
}
|
||||
object = object[key];
|
||||
}
|
||||
if (result) {
|
||||
if (result || ++index != length) {
|
||||
return result;
|
||||
}
|
||||
var length = object ? object.length : 0;
|
||||
length = object ? object.length : 0;
|
||||
return !!length && isLength(length) && isIndex(key, length) &&
|
||||
(isArray(object) || isArguments(object));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user