Fix FP rearg for _.zipWith and _.inRange.

This commit is contained in:
Billy Janitsch
2016-02-09 20:10:21 -05:00
committed by John-David Dalton
parent 02bea6534c
commit 2b1eedb036

View File

@@ -80,7 +80,7 @@ exports.aryMethod = {
/** Used to map ary to rearg configs. */ /** Used to map ary to rearg configs. */
exports.aryRearg = { exports.aryRearg = {
2: [1, 0], 2: [1, 0],
3: [2, 1, 0], 3: [2, 0, 1],
4: [3, 2, 0, 1] 4: [3, 2, 0, 1]
}; };
@@ -138,14 +138,13 @@ exports.iterateeRearg = {
exports.methodRearg = { exports.methodRearg = {
'assignInWith': [1, 2, 0], 'assignInWith': [1, 2, 0],
'assignWith': [1, 2, 0], 'assignWith': [1, 2, 0],
'clamp': [2, 0, 1], 'getOr': [2, 1, 0],
'isMatchWith': [2, 1, 0],
'mergeWith': [1, 2, 0], 'mergeWith': [1, 2, 0],
'reduce': [2, 0, 1], 'pullAllBy': [2, 1, 0],
'reduceRight': [2, 0, 1],
'set': [2, 0, 1],
'setWith': [3, 1, 2, 0], 'setWith': [3, 1, 2, 0],
'slice': [2, 0, 1], 'sortedIndexBy': [2, 1, 0],
'transform': [2, 0, 1] 'sortedLastIndexBy': [2, 1, 0]
}; };
/** Used to map method names to spread configs. */ /** Used to map method names to spread configs. */