mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Align indentations
This commit is contained in:
@@ -20,9 +20,9 @@ function isIterateeCall(value, index, object) {
|
||||
}
|
||||
const 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
|
||||
|
||||
Reference in New Issue
Block a user