Built motion from commit 7767ffc.|0.0.132
[motion.git] / public / bower_components / lodash / dist / lodash.fp.js
index a649a34..6181b35 100644 (file)
@@ -57,15 +57,20 @@ return /******/ (function(modules) { // webpackBootstrap
        var baseConvert = __webpack_require__(1);
 
        /**
-        * Converts `lodash` to an auto-curried iteratee-first data-last version.
+        * Converts `lodash` to an immutable auto-curried iteratee-first data-last
+        * version with conversion `options` applied.
         *
-        * @param {Function} lodash The lodash function.
-        * @returns {Function} Returns the converted lodash function.
+        * @param {Function} lodash The lodash function to convert.
+        * @param {Object} [options] The options object. See `baseConvert` for more details.
+        * @returns {Function} Returns the converted `lodash`.
         */
-       function browserConvert(lodash) {
-         return baseConvert(lodash, lodash);
+       function browserConvert(lodash, options) {
+         return baseConvert(lodash, lodash, options);
        }
 
+       if (typeof _ == 'function') {
+         _ = browserConvert(_.runInContext());
+       }
        module.exports = browserConvert;
 
 
@@ -74,110 +79,188 @@ return /******/ (function(modules) { // webpackBootstrap
 /***/ function(module, exports, __webpack_require__) {
 
        var mapping = __webpack_require__(2),
-           mutateMap = mapping.mutateMap;
+           mutateMap = mapping.mutate,
+           fallbackHolder = __webpack_require__(3);
+
+       /**
+        * Creates a function, with an arity of `n`, that invokes `func` with the
+        * arguments it receives.
+        *
+        * @private
+        * @param {Function} func The function to wrap.
+        * @param {number} n The arity of the new function.
+        * @returns {Function} Returns the new function.
+        */
+       function baseArity(func, n) {
+         return n == 2
+           ? function(a, b) { return func.apply(undefined, arguments); }
+           : function(a) { return func.apply(undefined, arguments); };
+       }
+
+       /**
+        * Creates a function that invokes `func`, with up to `n` arguments, ignoring
+        * any additional arguments.
+        *
+        * @private
+        * @param {Function} func The function to cap arguments for.
+        * @param {number} n The arity cap.
+        * @returns {Function} Returns the new function.
+        */
+       function baseAry(func, n) {
+         return n == 2
+           ? function(a, b) { return func(a, b); }
+           : function(a) { return func(a); };
+       }
+
+       /**
+        * Creates a clone of `array`.
+        *
+        * @private
+        * @param {Array} array The array to clone.
+        * @returns {Array} Returns the cloned array.
+        */
+       function cloneArray(array) {
+         var length = array ? array.length : 0,
+             result = Array(length);
+
+         while (length--) {
+           result[length] = array[length];
+         }
+         return result;
+       }
+
+       /**
+        * Creates a function that clones a given object using the assignment `func`.
+        *
+        * @private
+        * @param {Function} func The assignment function.
+        * @returns {Function} Returns the new cloner function.
+        */
+       function createCloner(func) {
+         return function(object) {
+           return func({}, object);
+         };
+       }
+
+       /**
+        * Creates a function that wraps `func` and uses `cloner` to clone the first
+        * argument it receives.
+        *
+        * @private
+        * @param {Function} func The function to wrap.
+        * @param {Function} cloner The function to clone arguments.
+        * @returns {Function} Returns the new immutable function.
+        */
+       function immutWrap(func, cloner) {
+         return function() {
+           var length = arguments.length;
+           if (!length) {
+             return result;
+           }
+           var args = Array(length);
+           while (length--) {
+             args[length] = arguments[length];
+           }
+           var result = args[0] = cloner.apply(undefined, args);
+           func.apply(undefined, args);
+           return result;
+         };
+       }
 
        /**
         * The base implementation of `convert` which accepts a `util` object of methods
         * required to perform conversions.
         *
         * @param {Object} util The util object.
-        * @param {string} name The name of the function to wrap.
-        * @param {Function} func The function to wrap.
+        * @param {string} name The name of the function to convert.
+        * @param {Function} func The function to convert.
+        * @param {Object} [options] The options object.
+        * @param {boolean} [options.cap=true] Specify capping iteratee arguments.
+        * @param {boolean} [options.curry=true] Specify currying.
+        * @param {boolean} [options.fixed=true] Specify fixed arity.
+        * @param {boolean} [options.immutable=true] Specify immutable operations.
+        * @param {boolean} [options.rearg=true] Specify rearranging arguments.
         * @returns {Function|Object} Returns the converted function or object.
         */
-       function baseConvert(util, name, func) {
-         if (typeof func != 'function') {
+       function baseConvert(util, name, func, options) {
+         var setPlaceholder,
+             isLib = typeof name == 'function',
+             isObj = name === Object(name);
+
+         if (isObj) {
+           options = func;
            func = name;
            name = undefined;
          }
          if (func == null) {
            throw new TypeError;
          }
-         var isLib = name === undefined && typeof func.VERSION == 'string';
+         options || (options = {});
+
+         var config = {
+           'cap': 'cap' in options ? options.cap : true,
+           'curry': 'curry' in options ? options.curry : true,
+           'fixed': 'fixed' in options ? options.fixed : true,
+           'immutable': 'immutable' in options ? options.immutable : true,
+           'rearg': 'rearg' in options ? options.rearg : true
+         };
+
+         var forceCurry = ('curry' in options) && options.curry,
+             forceFixed = ('fixed' in options) && options.fixed,
+             forceRearg = ('rearg' in options) && options.rearg,
+             placeholder = isLib ? func : fallbackHolder,
+             pristine = isLib ? func.runInContext() : undefined;
 
-         var _ = isLib ? func : {
+         var helpers = isLib ? func : {
            'ary': util.ary,
-           'cloneDeep': util.cloneDeep,
+           'assign': util.assign,
+           'clone': util.clone,
            'curry': util.curry,
            'forEach': util.forEach,
+           'isArray': util.isArray,
            'isFunction': util.isFunction,
            'iteratee': util.iteratee,
            'keys': util.keys,
-           'rearg': util.rearg
+           'rearg': util.rearg,
+           'spread': util.spread,
+           'toPath': util.toPath
          };
 
-         var ary = _.ary,
-             cloneDeep = _.cloneDeep,
-             curry = _.curry,
-             each = _.forEach,
-             isFunction = _.isFunction,
-             keys = _.keys,
-             rearg = _.rearg;
+         var ary = helpers.ary,
+             assign = helpers.assign,
+             clone = helpers.clone,
+             curry = helpers.curry,
+             each = helpers.forEach,
+             isArray = helpers.isArray,
+             isFunction = helpers.isFunction,
+             keys = helpers.keys,
+             rearg = helpers.rearg,
+             spread = helpers.spread,
+             toPath = helpers.toPath;
 
-         var baseAry = function(func, n) {
-           return function() {
-             var args = arguments,
-                 length = Math.min(args.length, n);
-
-             switch (length) {
-               case 1: return func(args[0]);
-               case 2: return func(args[0], args[1]);
-             }
-             args = Array(length);
-             while (length--) {
-               args[length] = arguments[length];
-             }
-             return func.apply(undefined, args);
-           };
-         };
-
-         var cloneArray = function(array) {
-           var length = array ? array.length : 0,
-               result = Array(length);
-
-           while (length--) {
-             result[length] = array[length];
-           }
-           return result;
-         };
-
-         var createCloner = function(func) {
-           return function(object) {
-             return func({}, object);
-           };
-         };
-
-         var immutWrap = function(func, cloner) {
-           return overArg(func, cloner, true);
-         };
-
-         var iterateeAry = function(func, n) {
-           return overArg(func, function(func) {
-             return baseAry(func, n);
-           });
-         };
-
-         var overArg = function(func, iteratee, retArg) {
-           return function() {
-             var length = arguments.length,
-                 args = Array(length);
-
-             while (length--) {
-               args[length] = arguments[length];
-             }
-             args[0] = iteratee(args[0]);
-             var result = func.apply(undefined, args);
-             return retArg ? args[0] : result;
-           };
-         };
+         var aryMethodKeys = keys(mapping.aryMethod);
 
          var wrappers = {
+           'castArray': function(castArray) {
+             return function() {
+               var value = arguments[0];
+               return isArray(value)
+                 ? castArray(cloneArray(value))
+                 : castArray.apply(undefined, arguments);
+             };
+           },
            'iteratee': function(iteratee) {
-             return function(func, arity) {
-               arity = arity > 2 ? (arity - 2) : 1;
-               func = iteratee(func);
-               var length = func.length;
-               return (length && length <= arity) ? func : baseAry(func, arity);
+             return function() {
+               var func = arguments[0],
+                   arity = arguments[1],
+                   result = iteratee(func, arity),
+                   length = result.length;
+
+               if (config.cap && typeof arity == 'number') {
+                 arity = arity > 2 ? (arity - 2) : 1;
+                 return (length && length <= arity) ? result : baseAry(result, arity);
+               }
+               return result;
              };
            },
            'mixin': function(mixin) {
@@ -212,70 +295,250 @@ return /******/ (function(modules) { // webpackBootstrap
            },
            'runInContext': function(runInContext) {
              return function(context) {
-               return baseConvert(util, runInContext(context));
+               return baseConvert(util, runInContext(context), options);
              };
            }
          };
 
-         var wrap = function(name, func) {
-           var wrapper = wrappers[name];
-           if (wrapper) {
-             return wrapper(func);
-           }
-           if (mutateMap.array[name]) {
-             func = immutWrap(func, cloneArray);
+         /*--------------------------------------------------------------------------*/
+
+         /**
+          * Creates a clone of `object` by `path`.
+          *
+          * @private
+          * @param {Object} object The object to clone.
+          * @param {Array|string} path The path to clone by.
+          * @returns {Object} Returns the cloned object.
+          */
+         function cloneByPath(object, path) {
+           path = toPath(path);
+
+           var index = -1,
+               length = path.length,
+               result = clone(Object(object)),
+               nested = result;
+
+           while (nested != null && ++index < length) {
+             var key = path[index],
+                 value = nested[key];
+
+             if (value != null) {
+               nested[key] = clone(Object(value));
+             }
+             nested = nested[key];
            }
-           else if (mutateMap.object[name]) {
-             func = immutWrap(func, createCloner(func));
+           return result;
+         }
+
+         /**
+          * Converts `lodash` to an immutable auto-curried iteratee-first data-last
+          * version with conversion `options` applied.
+          *
+          * @param {Object} [options] The options object. See `baseConvert` for more details.
+          * @returns {Function} Returns the converted `lodash`.
+          */
+         function convertLib(options) {
+           return _.runInContext.convert(options)(undefined);
+         }
+
+         /**
+          * Create a converter function for `func` of `name`.
+          *
+          * @param {string} name The name of the function to convert.
+          * @param {Function} func The function to convert.
+          * @returns {Function} Returns the new converter function.
+          */
+         function createConverter(name, func) {
+           var oldOptions = options;
+           return function(options) {
+             var newUtil = isLib ? pristine : helpers,
+                 newFunc = isLib ? pristine[name] : func,
+                 newOptions = assign(assign({}, oldOptions), options);
+
+             return baseConvert(newUtil, name, newFunc, newOptions);
+           };
+         }
+
+         /**
+          * Creates a function that wraps `func` to invoke its iteratee, with up to `n`
+          * arguments, ignoring any additional arguments.
+          *
+          * @private
+          * @param {Function} func The function to cap iteratee arguments for.
+          * @param {number} n The arity cap.
+          * @returns {Function} Returns the new function.
+          */
+         function iterateeAry(func, n) {
+           return overArg(func, function(func) {
+             return typeof func == 'function' ? baseAry(func, n) : func;
+           });
+         }
+
+         /**
+          * Creates a function that wraps `func` to invoke its iteratee with arguments
+          * arranged according to the specified `indexes` where the argument value at
+          * the first index is provided as the first argument, the argument value at
+          * the second index is provided as the second argument, and so on.
+          *
+          * @private
+          * @param {Function} func The function to rearrange iteratee arguments for.
+          * @param {number[]} indexes The arranged argument indexes.
+          * @returns {Function} Returns the new function.
+          */
+         function iterateeRearg(func, indexes) {
+           return overArg(func, function(func) {
+             var n = indexes.length;
+             return baseArity(rearg(baseAry(func, n), indexes), n);
+           });
+         }
+
+         /**
+          * Creates a function that invokes `func` with its first argument passed
+          * thru `transform`.
+          *
+          * @private
+          * @param {Function} func The function to wrap.
+          * @param {...Function} transform The functions to transform the first argument.
+          * @returns {Function} Returns the new function.
+          */
+         function overArg(func, transform) {
+           return function() {
+             var length = arguments.length;
+             if (!length) {
+               return func();
+             }
+             var args = Array(length);
+             while (length--) {
+               args[length] = arguments[length];
+             }
+             var index = config.rearg ? 0 : (length - 1);
+             args[index] = transform(args[index]);
+             return func.apply(undefined, args);
+           };
+         }
+
+         /**
+          * Creates a function that wraps `func` and applys the conversions
+          * rules by `name`.
+          *
+          * @private
+          * @param {string} name The name of the function to wrap.
+          * @param {Function} func The function to wrap.
+          * @returns {Function} Returns the converted function.
+          */
+         function wrap(name, func) {
+           name = mapping.aliasToReal[name] || name;
+
+           var result,
+               wrapped = func,
+               wrapper = wrappers[name];
+
+           if (wrapper) {
+             wrapped = wrapper(func);
            }
-           else if (mutateMap.set[name]) {
-             func = immutWrap(func, cloneDeep);
+           else if (config.immutable) {
+             if (mutateMap.array[name]) {
+               wrapped = immutWrap(func, cloneArray);
+             }
+             else if (mutateMap.object[name]) {
+               wrapped = immutWrap(func, createCloner(func));
+             }
+             else if (mutateMap.set[name]) {
+               wrapped = immutWrap(func, cloneByPath);
+             }
            }
-           var result;
-           each(mapping.caps, function(cap) {
-             each(mapping.aryMethodMap[cap], function(otherName) {
+           each(aryMethodKeys, function(aryKey) {
+             each(mapping.aryMethod[aryKey], function(otherName) {
                if (name == otherName) {
-                 result = ary(func, cap);
-                 if (cap > 1 && !mapping.skipReargMap[name]) {
-                   result = rearg(result, mapping.methodReargMap[name] || mapping.aryReargMap[cap]);
+                 var aryN = !isLib && mapping.iterateeAry[name],
+                     reargIndexes = mapping.iterateeRearg[name],
+                     spreadStart = mapping.methodSpread[name];
+
+                 result = wrapped;
+                 if (config.fixed && (forceFixed || !mapping.skipFixed[name])) {
+                   result = spreadStart === undefined
+                     ? ary(result, aryKey)
+                     : spread(result, spreadStart);
                  }
-                 var n = !isLib && mapping.aryIterateeMap[name];
-                 if (n) {
-                   result = iterateeAry(result, n);
+                 if (config.rearg && aryKey > 1 && (forceRearg || !mapping.skipRearg[name])) {
+                   result = rearg(result, mapping.methodRearg[name] || mapping.aryRearg[aryKey]);
                  }
-                 if (cap > 1) {
-                   result = curry(result, cap);
+                 if (config.cap) {
+                   if (reargIndexes) {
+                     result = iterateeRearg(result, reargIndexes);
+                   } else if (aryN) {
+                     result = iterateeAry(result, aryN);
+                   }
+                 }
+                 if (forceCurry || (config.curry && aryKey > 1)) {
+                   forceCurry  && console.log(forceCurry, name);
+                   result = curry(result, aryKey);
                  }
                  return false;
                }
              });
              return !result;
            });
-           return result || func;
-         };
 
-         if (!isLib) {
+           result || (result = wrapped);
+           if (result == func) {
+             result = forceCurry ? curry(result, 1) : function() {
+               return func.apply(this, arguments);
+             };
+           }
+           result.convert = createConverter(name, func);
+           if (mapping.placeholder[name]) {
+             setPlaceholder = true;
+             result.placeholder = func.placeholder = placeholder;
+           }
+           return result;
+         }
+
+         /*--------------------------------------------------------------------------*/
+
+         if (!isObj) {
            return wrap(name, func);
          }
-         // Iterate over methods for the current ary cap.
+         var _ = func;
+
+         // Convert methods by ary cap.
          var pairs = [];
-         each(mapping.caps, function(cap) {
-           each(mapping.aryMethodMap[cap], function(key) {
-             var func = _[mapping.keyMap[key] || key];
+         each(aryMethodKeys, function(aryKey) {
+           each(mapping.aryMethod[aryKey], function(key) {
+             var func = _[mapping.remap[key] || key];
              if (func) {
                pairs.push([key, wrap(key, func)]);
              }
            });
          });
 
+         // Convert remaining methods.
+         each(keys(_), function(key) {
+           var func = _[key];
+           if (typeof func == 'function') {
+             var length = pairs.length;
+             while (length--) {
+               if (pairs[length][0] == key) {
+                 return;
+               }
+             }
+             func.convert = createConverter(key, func);
+             pairs.push([key, func]);
+           }
+         });
+
          // Assign to `_` leaving `_.prototype` unchanged to allow chaining.
          each(pairs, function(pair) {
            _[pair[0]] = pair[1];
          });
 
-         // Wrap the lodash method and its aliases.
+         _.convert = convertLib;
+         if (setPlaceholder) {
+           _.placeholder = placeholder;
+         }
+         // Assign aliases.
          each(keys(_), function(key) {
-           each(mapping.aliasMap[key] || [], function(alias) {
+           each(mapping.realToAlias[key] || [], function(alias) {
              _[alias] = _[key];
            });
          });
@@ -290,171 +553,309 @@ return /******/ (function(modules) { // webpackBootstrap
 /* 2 */
 /***/ function(module, exports) {
 
-       module.exports = {
-
-         /** Used to map method names to their aliases. */
-         'aliasMap': {
-           'ary': ['nAry'],
-           'overEvery': ['allPass'],
-           'overSome': ['somePass'],
-           'filter': ['whereEq'],
-           'flatten': ['unnest'],
-           'flow': ['pipe'],
-           'flowRight': ['compose'],
-           'forEach': ['each'],
-           'forEachRight': ['eachRight'],
-           'get': ['path'],
-           'getOr': ['pathOr'],
-           'head': ['first'],
-           'includes': ['contains'],
-           'initial': ['init'],
-           'isEqual': ['equals'],
-           'mapValues': ['mapObj'],
-           'matchesProperty': ['pathEq'],
-           'overArgs': ['useWith'],
-           'omit': ['dissoc', 'omitAll'],
-           'pick': ['pickAll'],
-           'property': ['prop'],
-           'propertyOf': ['propOf'],
-           'rest': ['unapply'],
-           'some': ['all'],
-           'spread': ['apply'],
-           'zipObject': ['zipObj']
-         },
+       /** Used to map aliases to their real names. */
+       exports.aliasToReal = {
+
+         // Lodash aliases.
+         'each': 'forEach',
+         'eachRight': 'forEachRight',
+         'entries': 'toPairs',
+         'entriesIn': 'toPairsIn',
+         'extend': 'assignIn',
+         'extendWith': 'assignInWith',
+         'first': 'head',
+
+         // Ramda aliases.
+         '__': 'placeholder',
+         'all': 'every',
+         'allPass': 'overEvery',
+         'always': 'constant',
+         'any': 'some',
+         'anyPass': 'overSome',
+         'apply': 'spread',
+         'assoc': 'set',
+         'assocPath': 'set',
+         'complement': 'negate',
+         'compose': 'flowRight',
+         'contains': 'includes',
+         'dissoc': 'unset',
+         'dissocPath': 'unset',
+         'equals': 'isEqual',
+         'identical': 'eq',
+         'init': 'initial',
+         'invertObj': 'invert',
+         'juxt': 'over',
+         'omitAll': 'omit',
+         'nAry': 'ary',
+         'path': 'get',
+         'pathEq': 'matchesProperty',
+         'pathOr': 'getOr',
+         'paths': 'at',
+         'pickAll': 'pick',
+         'pipe': 'flow',
+         'pluck': 'map',
+         'prop': 'get',
+         'propEq': 'matchesProperty',
+         'propOr': 'getOr',
+         'props': 'at',
+         'unapply': 'rest',
+         'unnest': 'flatten',
+         'useWith': 'overArgs',
+         'whereEq': 'filter',
+         'zipObj': 'zipObject'
+       };
 
-         /** Used to map method names to their iteratee ary. */
-         'aryIterateeMap': {
-           'assignWith': 2,
-           'cloneDeepWith': 1,
-           'cloneWith': 1,
-           'dropRightWhile': 1,
-           'dropWhile': 1,
-           'every': 1,
-           'extendWith': 2,
-           'filter': 1,
-           'find': 1,
-           'findIndex': 1,
-           'findKey': 1,
-           'findLast': 1,
-           'findLastIndex': 1,
-           'findLastKey': 1,
-           'flatMap': 1,
-           'forEach': 1,
-           'forEachRight': 1,
-           'forIn': 1,
-           'forInRight': 1,
-           'forOwn': 1,
-           'forOwnRight': 1,
-           'isEqualWith': 2,
-           'isMatchWith': 2,
-           'map': 1,
-           'mapKeys': 1,
-           'mapValues': 1,
-           'partition': 1,
-           'reduce': 2,
-           'reduceRight': 2,
-           'reject': 1,
-           'remove': 1,
-           'some': 1,
-           'takeRightWhile': 1,
-           'takeWhile': 1,
-           'times': 1,
-           'transform': 2
-         },
+       /** Used to map ary to method names. */
+       exports.aryMethod = {
+         '1': [
+           'attempt', 'castArray', 'ceil', 'create', 'curry', 'curryRight', 'floor',
+           'flow', 'flowRight', 'fromPairs', 'invert', 'iteratee', 'memoize', 'method',
+           'methodOf', 'mixin', 'over', 'overEvery', 'overSome', 'rest', 'reverse',
+           'round', 'runInContext', 'spread', 'template', 'trim', 'trimEnd', 'trimStart',
+           'uniqueId', 'words'
+         ],
+         '2': [
+           'add', 'after', 'ary', 'assign', 'assignIn', 'at', 'before', 'bind', 'bindAll',
+           'bindKey', 'chunk', 'cloneDeepWith', 'cloneWith', 'concat', 'countBy', 'curryN',
+           'curryRightN', 'debounce', 'defaults', 'defaultsDeep', 'delay', 'difference',
+           'divide', 'drop', 'dropRight', 'dropRightWhile', 'dropWhile', 'endsWith',
+           'eq', 'every', 'filter', 'find', 'find', 'findIndex', 'findKey', 'findLast',
+           'findLastIndex', 'findLastKey', 'flatMap', 'flatMapDeep', 'flattenDepth',
+           'forEach', 'forEachRight', 'forIn', 'forInRight', 'forOwn', 'forOwnRight',
+           'get', 'groupBy', 'gt', 'gte', 'has', 'hasIn', 'includes', 'indexOf',
+           'intersection', 'invertBy', 'invoke', 'invokeMap', 'isEqual', 'isMatch',
+           'join', 'keyBy', 'lastIndexOf', 'lt', 'lte', 'map', 'mapKeys', 'mapValues',
+           'matchesProperty', 'maxBy', 'meanBy', 'merge', 'minBy', 'multiply', 'nth',
+           'omit', 'omitBy', 'overArgs', 'pad', 'padEnd', 'padStart', 'parseInt',
+           'partial', 'partialRight', 'partition', 'pick', 'pickBy', 'pull', 'pullAll',
+           'pullAt', 'random', 'range', 'rangeRight', 'rearg', 'reject', 'remove',
+           'repeat', 'restFrom', 'result', 'sampleSize', 'some', 'sortBy', 'sortedIndex',
+           'sortedIndexOf', 'sortedLastIndex', 'sortedLastIndexOf', 'sortedUniqBy',
+           'split', 'spreadFrom', 'startsWith', 'subtract', 'sumBy', 'take', 'takeRight',
+           'takeRightWhile', 'takeWhile', 'tap', 'throttle', 'thru', 'times', 'trimChars',
+           'trimCharsEnd', 'trimCharsStart', 'truncate', 'union', 'uniqBy', 'uniqWith',
+           'unset', 'unzipWith', 'without', 'wrap', 'xor', 'zip', 'zipObject',
+           'zipObjectDeep'
+         ],
+         '3': [
+           'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith',
+           'getOr', 'inRange', 'intersectionBy', 'intersectionWith', 'invokeArgs',
+           'invokeArgsMap', 'isEqualWith', 'isMatchWith', 'flatMapDepth', 'mergeWith',
+           'orderBy', 'padChars', 'padCharsEnd', 'padCharsStart', 'pullAllBy',
+           'pullAllWith', 'reduce', 'reduceRight', 'replace', 'set', 'slice',
+           'sortedIndexBy', 'sortedLastIndexBy', 'transform', 'unionBy', 'unionWith',
+           'update', 'xorBy', 'xorWith', 'zipWith'
+         ],
+         '4': [
+           'fill', 'setWith', 'updateWith'
+         ]
+       };
 
-         /** Used to map ary to method names. */
-         'aryMethodMap': {
-           1: (
-             'attempt,ceil,create,curry,curryRight,floor,fromPairs,iteratee,invert,over,' +
-             'overEvery,overSome,memoize,method,methodOf,mixin,rest,reverse,round,' +
-             'runInContext,template,trim,trimLeft,trimRight,uniqueId,words').split(','),
-           2: (
-             'add,ary,assign,at,bind,bindKey,cloneDeepWith,cloneWith,concat,countBy,curryN,' +
-             'curryRightN,debounce,defaults,defaultsDeep,delay,difference,drop,dropRight,' +
-             'dropRightWhile,dropWhile,endsWith,eq,every,extend,filter,find,find,findIndex,' +
-             'findKey,findLast,findLastIndex,findLastKey,flatMap,forEach,forEachRight,' +
-             'forIn,forInRight,forOwn,forOwnRight,get,groupBy,includes,indexBy,indexOf,' +
-             'intersection,invoke,invokeMap,isMatch,lastIndexOf,map,mapKeys,mapValues,' +
-             'matchesProperty,maxBy,mean,minBy,merge,omit,orderBy,overArgs,pad,padLeft,' +
-             'padRight,parseInt,partition,pick,pull,pullAll,pullAt,random,range,rangeRight,' +
-             'rearg,reject,remove,repeat,result,sampleSize,some,sortBy,sortedIndexBy,' +
-             'sortedLastIndexBy,sortedUniqBy,startsWith,subtract,sumBy,take,takeRight,' +
-             'takeRightWhile,takeWhile,throttle,times,truncate,union,uniqBy,without,wrap,' +
-             'xor,zip,zipObject').split(','),
-           3: (
-             'assignWith,clamp,differenceBy,extendWith,getOr,inRange,intersectionBy,' +
-             'isEqualWith,isMatchWith,mergeWith,omitBy,pickBy,pullAllBy,reduce,' +
-             'reduceRight,set,slice,transform,unionBy,xorBy,zipWith').split(','),
-           4:
-             ['fill', 'setWith']
-         },
+       /** Used to map ary to rearg configs. */
+       exports.aryRearg = {
+         '2': [1, 0],
+         '3': [2, 0, 1],
+         '4': [3, 2, 0, 1]
+       };
 
-         /** Used to map ary to rearg configs by method ary. */
-         'aryReargMap': {
-           2: [1, 0],
-           3: [2, 1, 0],
-           4: [3, 2, 0, 1]
-         },
+       /** Used to map method names to their iteratee ary. */
+       exports.iterateeAry = {
+         'dropRightWhile': 1,
+         'dropWhile': 1,
+         'every': 1,
+         'filter': 1,
+         'find': 1,
+         'findIndex': 1,
+         'findKey': 1,
+         'findLast': 1,
+         'findLastIndex': 1,
+         'findLastKey': 1,
+         'flatMap': 1,
+         'flatMapDeep': 1,
+         'flatMapDepth': 1,
+         'forEach': 1,
+         'forEachRight': 1,
+         'forIn': 1,
+         'forInRight': 1,
+         'forOwn': 1,
+         'forOwnRight': 1,
+         'map': 1,
+         'mapKeys': 1,
+         'mapValues': 1,
+         'partition': 1,
+         'reduce': 2,
+         'reduceRight': 2,
+         'reject': 1,
+         'remove': 1,
+         'some': 1,
+         'takeRightWhile': 1,
+         'takeWhile': 1,
+         'times': 1,
+         'transform': 2
+       };
 
-         /** Used to map ary to rearg configs by method names. */
-         'methodReargMap': {
-           'clamp': [2, 0, 1],
-           'reduce': [2, 0, 1],
-           'reduceRight': [2, 0, 1],
-           'setWith': [3, 2, 1, 0],
-           'slice': [2, 0, 1],
-           'transform': [2, 0, 1]
-         },
+       /** Used to map method names to iteratee rearg configs. */
+       exports.iterateeRearg = {
+         'mapKeys': [1]
+       };
 
-         /** Used to iterate `mapping.aryMethodMap` keys. */
-         'caps': [1, 2, 3, 4],
+       /** Used to map method names to rearg configs. */
+       exports.methodRearg = {
+         'assignInWith': [1, 2, 0],
+         'assignWith': [1, 2, 0],
+         'getOr': [2, 1, 0],
+         'isEqualWith': [1, 2, 0],
+         'isMatchWith': [2, 1, 0],
+         'mergeWith': [1, 2, 0],
+         'padChars': [2, 1, 0],
+         'padCharsEnd': [2, 1, 0],
+         'padCharsStart': [2, 1, 0],
+         'pullAllBy': [2, 1, 0],
+         'pullAllWith': [2, 1, 0],
+         'setWith': [3, 1, 2, 0],
+         'sortedIndexBy': [2, 1, 0],
+         'sortedLastIndexBy': [2, 1, 0],
+         'updateWith': [3, 1, 2, 0],
+         'zipWith': [1, 2, 0]
+       };
 
-         /** Used to map keys to other keys. */
-         'keyMap': {
-           'curryN': 'curry',
-           'curryRightN': 'curryRight',
-           'getOr': 'get'
-         },
+       /** Used to map method names to spread configs. */
+       exports.methodSpread = {
+         'invokeArgs': 2,
+         'invokeArgsMap': 2,
+         'partial': 1,
+         'partialRight': 1,
+         'without': 1
+       };
 
-         /** Used to identify methods which mutate arrays or objects. */
-         'mutateMap': {
-           'array': {
-             'fill': true,
-             'pull': true,
-             'pullAll': true,
-             'pullAllBy': true,
-             'pullAt': true,
-             'remove': true,
-             'reverse': true
-           },
-           'object': {
-             'assign': true,
-             'assignWith': true,
-             'defaults': true,
-             'defaultsDeep': true,
-             'extend': true,
-             'extendWith': true,
-             'merge': true,
-             'mergeWith': true
-           },
-           'set': {
-             'set': true,
-             'setWith': true
-           }
+       /** Used to identify methods which mutate arrays or objects. */
+       exports.mutate = {
+         'array': {
+           'fill': true,
+           'pull': true,
+           'pullAll': true,
+           'pullAllBy': true,
+           'pullAllWith': true,
+           'pullAt': true,
+           'remove': true,
+           'reverse': true
+         },
+         'object': {
+           'assign': true,
+           'assignIn': true,
+           'assignInWith': true,
+           'assignWith': true,
+           'defaults': true,
+           'defaultsDeep': true,
+           'merge': true,
+           'mergeWith': true
          },
+         'set': {
+           'set': true,
+           'setWith': true,
+           'unset': true,
+           'update': true,
+           'updateWith': true
+         }
+       };
 
-         /** Used to track methods that skip `_.rearg`. */
-         'skipReargMap': {
-           'difference': true,
-           'matchesProperty': true,
-           'random': true,
-           'range': true,
-           'rangeRight': true,
-           'zip': true,
-           'zipObject': true
+       /** Used to track methods with placeholder support */
+       exports.placeholder = {
+         'bind': true,
+         'bindKey': true,
+         'curry': true,
+         'curryRight': true,
+         'partial': true,
+         'partialRight': true
+       };
+
+       /** Used to map real names to their aliases. */
+       exports.realToAlias = (function() {
+         var hasOwnProperty = Object.prototype.hasOwnProperty,
+             object = exports.aliasToReal,
+             result = {};
+
+         for (var key in object) {
+           var value = object[key];
+           if (hasOwnProperty.call(result, value)) {
+             result[value].push(key);
+           } else {
+             result[value] = [key];
+           }
          }
+         return result;
+       }());
+
+       /** Used to map method names to other names. */
+       exports.remap = {
+         'curryN': 'curry',
+         'curryRightN': 'curryRight',
+         'getOr': 'get',
+         'invokeArgs': 'invoke',
+         'invokeArgsMap': 'invokeMap',
+         'padChars': 'pad',
+         'padCharsEnd': 'padEnd',
+         'padCharsStart': 'padStart',
+         'restFrom': 'rest',
+         'spreadFrom': 'spread',
+         'trimChars': 'trim',
+         'trimCharsEnd': 'trimEnd',
+         'trimCharsStart': 'trimStart'
+       };
+
+       /** Used to track methods that skip fixing their arity. */
+       exports.skipFixed = {
+         'castArray': true,
+         'flow': true,
+         'flowRight': true,
+         'iteratee': true,
+         'mixin': true,
+         'runInContext': true
        };
 
+       /** Used to track methods that skip rearranging arguments. */
+       exports.skipRearg = {
+         'add': true,
+         'assign': true,
+         'assignIn': true,
+         'bind': true,
+         'bindKey': true,
+         'concat': true,
+         'difference': true,
+         'divide': true,
+         'eq': true,
+         'gt': true,
+         'gte': true,
+         'isEqual': true,
+         'lt': true,
+         'lte': true,
+         'matchesProperty': true,
+         'merge': true,
+         'multiply': true,
+         'overArgs': true,
+         'partial': true,
+         'partialRight': true,
+         'random': true,
+         'range': true,
+         'rangeRight': true,
+         'subtract': true,
+         'without': true,
+         'zip': true,
+         'zipObject': true
+       };
+
+
+/***/ },
+/* 3 */
+/***/ function(module, exports) {
+
+       /**
+        * The default argument placeholder value for methods.
+        *
+        * @type {Object}
+        */
+       module.exports = {};
+
 
 /***/ }
 /******/ ])