Separate fp _mapping into individual exports.

This commit is contained in:
John-David Dalton
2016-01-26 23:43:23 -08:00
parent 01e176694f
commit e20f43018b

View File

@@ -1,7 +1,5 @@
module.exports = {
/** Used to map method names to their iteratee ary. */ /** Used to map method names to their iteratee ary. */
'aryIteratee': { exports.aryIteratee = {
'assignWith': 2, 'assignWith': 2,
'assignInWith': 2, 'assignInWith': 2,
'cloneDeepWith': 1, 'cloneDeepWith': 1,
@@ -38,10 +36,10 @@ module.exports = {
'takeWhile': 1, 'takeWhile': 1,
'times': 1, 'times': 1,
'transform': 2 'transform': 2
}, };
/** Used to map ary to method names. */ /** Used to map ary to method names. */
'aryMethod': { exports.aryMethod = {
1: [ 1: [
'attempt', 'ceil', 'create', 'curry', 'curryRight', 'floor', 'fromPairs', 'attempt', 'ceil', 'create', 'curry', 'curryRight', 'floor', 'fromPairs',
'invert', 'iteratee', 'memoize', 'method', 'methodOf', 'mixin', 'over', 'invert', 'iteratee', 'memoize', 'method', 'methodOf', 'mixin', 'over',
@@ -52,22 +50,21 @@ module.exports = {
'add', 'after', 'ary', 'assign', 'assignIn', 'at', 'before', 'bind', 'bindKey', 'add', 'after', 'ary', 'assign', 'assignIn', 'at', 'before', 'bind', 'bindKey',
'chunk', 'cloneDeepWith', 'cloneWith', 'concat', 'countBy', 'curryN', 'chunk', 'cloneDeepWith', 'cloneWith', 'concat', 'countBy', 'curryN',
'curryRightN', 'debounce', 'defaults', 'defaultsDeep', 'delay', 'difference', 'curryRightN', 'debounce', 'defaults', 'defaultsDeep', 'delay', 'difference',
'drop', 'dropRight', 'dropRightWhile', 'dropWhile', 'endsWith', 'eq', 'drop', 'dropRight', 'dropRightWhile', 'dropWhile', 'endsWith', 'eq', 'every',
'every', 'extend', 'filter', 'find', 'find', 'findIndex', 'findKey', 'extend', 'filter', 'find', 'find', 'findIndex', 'findKey', 'findLast',
'findLast', 'findLastIndex', 'findLastKey', 'flatMap', 'forEach', 'findLastIndex', 'findLastKey', 'flatMap', 'forEach', 'forEachRight', 'forIn',
'forEachRight', 'forIn', 'forInRight', 'forOwn', 'forOwnRight', 'get', 'forInRight', 'forOwn', 'forOwnRight', 'get', 'groupBy', 'gt', 'gte', 'has',
'groupBy', 'gt', 'gte', 'has', 'hasIn', 'includes', 'indexOf', 'intersection', 'hasIn', 'includes', 'indexOf', 'intersection', 'invertBy', 'invoke',
'invertBy', 'invoke', 'invokeMap', 'isEqual', 'isMatch', 'join', 'keyBy', 'invokeMap', 'isEqual', 'isMatch', 'join', 'keyBy', 'lastIndexOf', 'lt', 'lte',
'lastIndexOf', 'lt', 'lte', 'map', 'mapKeys', 'mapValues', 'matchesProperty', 'map', 'mapKeys', 'mapValues', 'matchesProperty', 'maxBy', 'merge', 'minBy',
'maxBy', 'merge', 'minBy', 'omit', 'omitBy', 'orderBy', 'overArgs', 'pad', 'omit', 'omitBy', 'orderBy', 'overArgs', 'pad', 'padEnd', 'padStart', 'parseInt',
'padEnd', 'padStart', 'parseInt', 'partition', 'pick', 'pickBy', 'pull', 'partition', 'pick', 'pickBy', 'pull', 'pullAll', 'pullAt', 'random', 'range',
'pullAll', 'pullAt', 'random', 'range', 'rangeRight', 'rearg', 'reject', 'rangeRight', 'rearg', 'reject', 'remove', 'repeat', 'result', 'sampleSize',
'remove', 'repeat', 'result', 'sampleSize', 'some', 'sortBy', 'sortedIndex', 'some', 'sortBy', 'sortedIndex', 'sortedIndexOf', 'sortedLastIndex',
'sortedIndexOf', 'sortedLastIndex', 'sortedLastIndexOf', 'sortedUniqBy', 'sortedLastIndexOf', 'sortedUniqBy', 'split', 'startsWith', 'subtract',
'split', 'startsWith', 'subtract', 'sumBy', 'take', 'takeRight', 'takeRightWhile', 'sumBy', 'take', 'takeRight', 'takeRightWhile', 'takeWhile', 'tap', 'throttle',
'takeWhile', 'tap', 'throttle', 'thru', 'times', 'truncate', 'union', 'uniqBy', 'thru', 'times', 'truncate', 'union', 'uniqBy', 'uniqWith', 'unset', 'unzipWith',
'uniqWith', 'unset', 'unzipWith', 'without', 'wrap', 'xor', 'zip', 'zipObject', 'without', 'wrap', 'xor', 'zip', 'zipObject', 'zipObjectDeep'
'zipObjectDeep'
], ],
3: [ 3: [
'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith', 'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith',
@@ -79,24 +76,24 @@ module.exports = {
4: [ 4: [
'fill', 'setWith' 'fill', 'setWith'
] ]
}, };
/** Used to map ary to rearg configs. */ /** Used to map ary to rearg configs. */
'aryRearg': { exports.aryRearg = {
2: [1, 0], 2: [1, 0],
3: [2, 1, 0], 3: [2, 1, 0],
4: [3, 2, 0, 1] 4: [3, 2, 0, 1]
}, };
/** Used to map method names to iteratee rearg configs. */ /** Used to map method names to iteratee rearg configs. */
'iterateeRearg': { exports.iterateeRearg = {
'findKey': [1], 'findKey': [1],
'findLastKey': [1], 'findLastKey': [1],
'mapKeys': [1] 'mapKeys': [1]
}, };
/** Used to map method names to rearg configs. */ /** Used to map method names to rearg configs. */
'methodRearg': { exports.methodRearg = {
'assignInWith': [1, 2, 0], 'assignInWith': [1, 2, 0],
'assignWith': [1, 2, 0], 'assignWith': [1, 2, 0],
'clamp': [2, 0, 1], 'clamp': [2, 0, 1],
@@ -107,20 +104,20 @@ module.exports = {
'setWith': [3, 1, 2, 0], 'setWith': [3, 1, 2, 0],
'slice': [2, 0, 1], 'slice': [2, 0, 1],
'transform': [2, 0, 1] 'transform': [2, 0, 1]
}, };
/** Used to iterate `mapping.aryMethod` keys. */ /** Used to iterate `mapping.aryMethod` keys. */
'caps': [1, 2, 3, 4], exports.caps = [1, 2, 3, 4];
/** Used to map keys to other keys. */ /** Used to map keys to other keys. */
'key': { exports.key = {
'curryN': 'curry', 'curryN': 'curry',
'curryRightN': 'curryRight', 'curryRightN': 'curryRight',
'getOr': 'get' 'getOr': 'get'
}, };
/** Used to identify methods which mutate arrays or objects. */ /** Used to identify methods which mutate arrays or objects. */
'mutate': { exports.mutate = {
'array': { 'array': {
'fill': true, 'fill': true,
'pull': true, 'pull': true,
@@ -144,20 +141,20 @@ module.exports = {
'set': true, 'set': true,
'setWith': true 'setWith': true
} }
}, };
/** Used to track methods with placeholder support */ /** Used to track methods with placeholder support */
'placeholder': { exports.placeholder = {
'bind': true, 'bind': true,
'bindKey': true, 'bindKey': true,
'curry': true, 'curry': true,
'curryRight': true, 'curryRight': true,
'partial': true, 'partial': true,
'partialRight': true 'partialRight': true
}, };
/** Used to map real names to their aliases. */ /** Used to map real names to their aliases. */
'realToAlias': { exports.realToAlias = {
'ary': ['nAry'], 'ary': ['nAry'],
'assignIn': ['extend'], 'assignIn': ['extend'],
'assignInWith': ['extendWith'], 'assignInWith': ['extendWith'],
@@ -185,10 +182,10 @@ module.exports = {
'some': ['all'], 'some': ['all'],
'spread': ['apply'], 'spread': ['apply'],
'zipObject': ['zipObj'] 'zipObject': ['zipObj']
}, };
/** Used to track methods that skip `_.rearg`. */ /** Used to track methods that skip `_.rearg`. */
'skipRearg': { exports.skipRearg = {
'assign': true, 'assign': true,
'assignIn': true, 'assignIn': true,
'concat': true, 'concat': true,
@@ -200,5 +197,4 @@ module.exports = {
'rangeRight': true, 'rangeRight': true,
'zip': true, 'zip': true,
'zipObject': true 'zipObject': true
}
}; };