Flip iteratee arguments for fp.reduceRight.

This commit is contained in:
John-David Dalton
2016-11-19 23:44:52 -06:00
parent dd0d984d37
commit 86ee93650d
2 changed files with 5 additions and 4 deletions

View File

@@ -167,7 +167,8 @@ exports.iterateeAry = {
/** Used to map method names to iteratee rearg configs. */
exports.iterateeRearg = {
'mapKeys': [1]
'mapKeys': [1],
'reduceRight': [1, 0]
};
/** Used to map method names to rearg configs. */