From 8f00000676178f5f9e0b13eb17ae799cc61a1e4a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 3 Mar 2016 20:07:10 -0800 Subject: [PATCH] Minor format nit of `isIterateeCall`. --- lodash.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 218bf348a..99997c9ab 100644 --- a/lodash.js +++ b/lodash.js @@ -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;