Add rangeRight to fp mapping.

This commit is contained in:
John-David Dalton
2015-12-03 18:00:38 -08:00
parent dc136cbf31
commit 58736f743e

View File

@@ -85,11 +85,11 @@ module.exports = {
'forOwn,forOwnRight,get,groupBy,includes,indexBy,indexOf,intersection,' + 'forOwn,forOwnRight,get,groupBy,includes,indexBy,indexOf,intersection,' +
'invoke,invokeMap,isMatch,lastIndexOf,map,mapKeys,mapValues,matchesProperty,' + 'invoke,invokeMap,isMatch,lastIndexOf,map,mapKeys,mapValues,matchesProperty,' +
'maxBy,mean,minBy,merge,modArgs,modArgsSet,omit,pad,padLeft,padRight,parseInt,' + 'maxBy,mean,minBy,merge,modArgs,modArgsSet,omit,pad,padLeft,padRight,parseInt,' +
'partition,pick,pull,pullAll,pullAt,random,range,rearg,reject,remove,repeat,' + 'partition,pick,pull,pullAll,pullAt,random,range,rangeRight,rearg,reject,' +
'result,sampleSize,set,some,sortBy,sortByOrder,sortedIndexBy,sortedLastIndexBy,' + 'remove,repeat,result,sampleSize,set,some,sortBy,sortByOrder,sortedIndexBy,' +
'sortedUniqBy,startsWith,subtract,sumBy,take,takeRight,takeRightWhile,' + 'sortedLastIndexBy,sortedUniqBy,startsWith,subtract,sumBy,take,takeRight,' +
'takeWhile,throttle,times,truncate,union,uniqBy,without,wrap,xor,zip,' + 'takeRightWhile,takeWhile,throttle,times,truncate,union,uniqBy,without,wrap,' +
'zipObject').split(','), 'xor,zip,zipObject').split(','),
3: ( 3: (
'assignWith,clamp,differenceBy,extendWith,getOr,inRange,intersectionBy,' + 'assignWith,clamp,differenceBy,extendWith,getOr,inRange,intersectionBy,' +
'isEqualWith,isMatchWith,mergeWith,omitBy,pickBy,pullAllBy,reduce,' + 'isEqualWith,isMatchWith,mergeWith,omitBy,pickBy,pullAllBy,reduce,' +
@@ -153,6 +153,7 @@ module.exports = {
'matchesProperty': true, 'matchesProperty': true,
'random': true, 'random': true,
'range': true, 'range': true,
'rangeRight': true,
'zip': true, 'zip': true,
'zipObject': true 'zipObject': true
} }