mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
Align indentations
This commit is contained in:
6
maxBy.js
6
maxBy.js
@@ -27,9 +27,9 @@ function maxBy(array, iteratee) {
|
||||
const current = iteratee(value)
|
||||
|
||||
if (current != null && (computed === undefined
|
||||
? (current === current && !isSymbol(current))
|
||||
: (current > computed)
|
||||
)) {
|
||||
? (current === current && !isSymbol(current))
|
||||
: (current > computed)
|
||||
)) {
|
||||
computed = current
|
||||
result = value
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user