mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 02:47:50 +00:00
Fixin value typo. (#3010)
This commit is contained in:
committed by
John-David Dalton
parent
2baf7a3e9e
commit
2d83592273
@@ -31,7 +31,7 @@ function baseIntersection(arrays, iteratee, comparator) {
|
|||||||
while (othIndex--) {
|
while (othIndex--) {
|
||||||
array = arrays[othIndex]
|
array = arrays[othIndex]
|
||||||
if (othIndex && iteratee) {
|
if (othIndex && iteratee) {
|
||||||
array = arrayMap(array, valye => iteratee(value))
|
array = arrayMap(array, value => iteratee(value))
|
||||||
}
|
}
|
||||||
maxLength = nativeMin(array.length, maxLength)
|
maxLength = nativeMin(array.length, maxLength)
|
||||||
caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))
|
caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))
|
||||||
|
|||||||
Reference in New Issue
Block a user