diff --git a/lib/fp/mapping.js b/lib/fp/mapping.js index 7638737bf..45ebcf655 100644 --- a/lib/fp/mapping.js +++ b/lib/fp/mapping.js @@ -58,11 +58,12 @@ module.exports = { 'dropWhile,endsWith,every,extend,filter,find,find,findIndex,findKey,findLast,' + 'findLastIndex,findLastKey,forEach,forEachRight,forIn,forInRight,forOwn,' + 'forOwnRight,get,groupBy,includes,indexBy,indexOf,intersection,invoke,' + - 'isMatch,lastIndexOf,map,mapKeys,mapValues,maxBy,minBy,merge,omit,pad,padLeft,' + - 'padRight,parseInt,partition,pick,pull,pullAll,pullAt,random,range,rearg,reject,' + - 'remove,repeat,result,sampleSize,set,some,sortBy,sortByOrder,sortedIndexBy,' + - 'sortedLastIndexBy,sortedUniqBy,startsWith,sumBy,take,takeRight,takeRightWhile,' + - 'takeWhile,throttle,times,trunc,union,uniqBy,uniqueId,without,wrap,xor,zip').split(','), + 'isMatch,lastIndexOf,map,mapKeys,mapValues,maxBy,minBy,merge,modArgs,' + + 'modArgsSet,omit,pad,padLeft,padRight,parseInt,partition,pick,pull,pullAll,' + + 'pullAt,random,range,rearg,reject,remove,repeat,result,sampleSize,set,some,' + + 'sortBy,sortByOrder,sortedIndexBy,sortedLastIndexBy,sortedUniqBy,startsWith,' + + 'sumBy,take,takeRight,takeRightWhile,takeWhile,throttle,times,trunc,union,' + + 'uniqBy,uniqueId,without,wrap,xor,zip').split(','), 3: ( 'assignWith,clamp,differenceBy,extendWith,inRange,intersectionBy,isEqualWith,' + 'isMatchWith,mergeWith,omitBy,pickBy,pullAllBy,reduce,reduceRight,slice,' + diff --git a/test/test.fp.js b/test/test.fp.js index 69a2dc6af..fce25e5b3 100644 --- a/test/test.fp.js +++ b/test/test.fp.js @@ -83,7 +83,8 @@ QUnit.module('method ary caps'); var funcMethods = [ 'after', 'ary', 'before', 'bind', 'bindKey', 'cloneDeepWith', 'cloneWith', - 'curryN', 'debounce', 'delay', 'rearg', 'throttle', 'wrap' + 'curryN', 'debounce', 'delay', 'modArgs', 'modArgsSet', 'rearg', 'throttle', + 'wrap' ]; var exceptions = _.difference(funcMethods.concat('matchesProperty'), ['cloneDeepWith', 'cloneWith', 'delay']),