Move omitBy and pickBy to aryMethod[2] mapping. [closes #1819]

This commit is contained in:
John-David Dalton
2016-01-24 15:05:49 -08:00
parent 2fb778413b
commit 759a44e2b8

View File

@@ -91,19 +91,19 @@ module.exports = {
'groupBy', 'gt', 'gte', 'has', 'hasIn', 'includes', 'indexOf', 'intersection', 'groupBy', 'gt', 'gte', 'has', 'hasIn', 'includes', 'indexOf', 'intersection',
'invoke', 'invokeMap', 'isEqual', 'isMatch', 'join', 'keyBy', 'lastIndexOf', 'invoke', 'invokeMap', 'isEqual', 'isMatch', 'join', 'keyBy', 'lastIndexOf',
'lt', 'lte', 'map', 'mapKeys', 'mapValues', 'matchesProperty', 'maxBy', 'lt', 'lte', 'map', 'mapKeys', 'mapValues', 'matchesProperty', 'maxBy',
'mean', 'merge', 'minBy', 'omit', 'orderBy', 'overArgs', 'pad', 'padEnd', 'mean', 'merge', 'minBy', 'omit', 'omitBy', 'orderBy', 'overArgs', 'pad',
'padStart', 'parseInt', 'partition', 'pick', 'pull', 'pullAll', 'pullAt', 'padEnd', 'padStart', 'parseInt', 'partition', 'pick', 'pickBy', 'pull',
'random', 'range', 'rangeRight', 'rearg', 'reject', 'remove', 'repeat', 'pullAll', 'pullAt', 'random', 'range', 'rangeRight', 'rearg', 'reject',
'result', 'sampleSize', 'some', 'sortBy', 'sortedIndex', 'sortedIndexOf', 'remove', 'repeat', 'result', 'sampleSize', 'some', 'sortBy', 'sortedIndex',
'sortedLastIndex', 'sortedLastIndexOf', 'sortedUniqBy', 'split', 'startsWith', 'sortedIndexOf', 'sortedLastIndex', 'sortedLastIndexOf', 'sortedUniqBy',
'subtract', 'sumBy', 'take', 'takeRight', 'takeRightWhile', 'takeWhile', 'split', 'startsWith', 'subtract', 'sumBy', 'take', 'takeRight', 'takeRightWhile',
'tap', 'throttle', 'thru', 'times', 'truncate', 'union', 'uniqBy', 'uniqWith', 'takeWhile', 'tap', 'throttle', 'thru', 'times', 'truncate', 'union', 'uniqBy',
'unzipWith', 'without', 'wrap', 'xor', 'zip', 'zipObject' 'uniqWith', 'unzipWith', 'without', 'wrap', 'xor', 'zip', 'zipObject'
], ],
3:[ 3:[
'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith', 'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith',
'getOr', 'inRange', 'intersectionBy', 'intersectionWith', 'isEqualWith', 'getOr', 'inRange', 'intersectionBy', 'intersectionWith', 'isEqualWith',
'isMatchWith', 'mergeWith', 'omitBy', 'pickBy', 'pullAllBy', 'reduce', 'isMatchWith', 'mergeWith', 'pullAllBy', 'reduce',
'reduceRight', 'replace', 'set', 'slice', 'sortedIndexBy', 'sortedLastIndexBy', 'reduceRight', 'replace', 'set', 'slice', 'sortedIndexBy', 'sortedLastIndexBy',
'transform', 'unionBy', 'unionWith', 'xorBy', 'xorWith', 'zipWith' 'transform', 'unionBy', 'unionWith', 'xorBy', 'xorWith', 'zipWith'
], ],