Align indentations

This commit is contained in:
Michał Lipiński
2019-08-20 12:13:07 +02:00
parent f90d0aec23
commit 8b441a506b
11 changed files with 34 additions and 31 deletions

View File

@@ -47,16 +47,16 @@ function baseIntersection(arrays, iteratee, comparator) {
value = (comparator || value !== 0) ? value : 0
if (!(seen
? cacheHas(seen, computed)
: includes(result, computed, comparator)
)) {
? cacheHas(seen, computed)
: includes(result, computed, comparator)
)) {
othIndex = othLength
while (--othIndex) {
const cache = caches[othIndex]
if (!(cache
? cacheHas(cache, computed)
: includes(arrays[othIndex], computed, comparator))
) {
? cacheHas(cache, computed)
: includes(arrays[othIndex], computed, comparator))
) {
continue outer
}
}