aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core.js b/src/core.js
index b3e9a7103..88b9a3c5d 100644
--- a/src/core.js
+++ b/src/core.js
@@ -444,10 +444,6 @@ function isArraylike( obj ) {
return false;
}
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
return type === "array" || length === 0 ||
typeof length === "number" && length > 0 && ( length - 1 ) in obj;
}