Sha256: ace319b9262515267ee22b7274549a3bfa37979644ca8206e64e368d9c928d26

Contents?: true

Size: 1.36 KB

Versions: 299

Compression:

Stored size: 1.36 KB

Contents

/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeMax = Math.max;

/**
 * This function is like `composeArgs` except that the arguments composition
 * is tailored for `_.partialRight`.
 *
 * @private
 * @param {Array} args The provided arguments.
 * @param {Array} partials The arguments to append to those provided.
 * @param {Array} holders The `partials` placeholder indexes.
 * @params {boolean} [isCurried] Specify composing for a curried function.
 * @returns {Array} Returns the new array of composed arguments.
 */
function composeArgsRight(args, partials, holders, isCurried) {
  var argsIndex = -1,
      argsLength = args.length,
      holdersIndex = -1,
      holdersLength = holders.length,
      rightIndex = -1,
      rightLength = partials.length,
      rangeLength = nativeMax(argsLength - holdersLength, 0),
      result = Array(rangeLength + rightLength),
      isUncurried = !isCurried;

  while (++argsIndex < rangeLength) {
    result[argsIndex] = args[argsIndex];
  }
  var offset = argsIndex;
  while (++rightIndex < rightLength) {
    result[offset + rightIndex] = partials[rightIndex];
  }
  while (++holdersIndex < holdersLength) {
    if (isUncurried || argsIndex < argsLength) {
      result[offset + holders[holdersIndex]] = args[argsIndex++];
    }
  }
  return result;
}

module.exports = composeArgsRight;

Version data entries

299 entries across 276 versions & 32 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.59 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.58 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.57 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.56 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.55 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.54 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.53 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.52 node_modules/lodash/_composeArgsRight.js
trusty-cms-6.3.1 node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.51 node_modules/lodash/_composeArgsRight.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/_composeArgsRight.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
immosquare-cleaner-0.1.50 node_modules/lodash/_composeArgsRight.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/_composeArgsRight.js