Minor format nit of isIterateeCall.

This commit is contained in:
John-David Dalton
2016-03-03 20:07:10 -08:00
parent 4240f737d1
commit 8f00000676

View File

@@ -5249,8 +5249,9 @@
}
var type = typeof index;
if (type == 'number'
? (isArrayLike(object) && isIndex(index, object.length))
: (type == 'string' && index in object)) {
? (isArrayLike(object) && isIndex(index, object.length))
: (type == 'string' && index in object)
) {
return eq(object[index], value);
}
return false;