We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6874cca commit 426a5acCopy full SHA for 426a5ac
src/Angular.js
@@ -200,7 +200,9 @@ function isArrayLike(obj) {
200
return false;
201
}
202
203
- var length = obj.length;
+ // Support: iOS 8.2 (not reproducible in simulator)
204
+ // "length" in obj used to prevent JIT error (gh-11508)
205
+ var length = "length" in Object(obj) && obj.length;
206
207
if (obj.nodeType === NODE_TYPE_ELEMENT && length) {
208
return true;
0 commit comments