Sha256: 1cedfc953b2965251ee8c948a7adbf31bf32ca3ff6274d2119583bca358d081e

Contents?: true

Size: 599 Bytes

Versions: 153

Compression:

Stored size: 599 Bytes

Contents

/**
 * Creates a new array joining `array` with `other`.
 *
 * @private
 * @param {Array} array The array to join.
 * @param {Array} other The other array to join.
 * @returns {Array} Returns the new concatenated array.
 */
function arrayConcat(array, other) {
  var index = -1,
      length = array.length,
      othIndex = -1,
      othLength = other.length,
      result = Array(length + othLength);

  while (++index < length) {
    result[index] = array[index];
  }
  while (++othIndex < othLength) {
    result[index++] = other[othIndex];
  }
  return result;
}

module.exports = arrayConcat;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
ilog-0.4.1 node_modules/contents/node_modules/lodash/internal/arrayConcat.js
ilog-0.4.1 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/arrayConcat.js
ilog-0.4.1 node_modules/babel/node_modules/lodash/internal/arrayConcat.js
ilog-0.4.0 node_modules/babel/node_modules/lodash/internal/arrayConcat.js
ilog-0.4.0 node_modules/contents/node_modules/lodash/internal/arrayConcat.js
ilog-0.4.0 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/arrayConcat.js
ilog-0.3.3 node_modules/babel/node_modules/lodash/internal/arrayConcat.js
ilog-0.3.3 node_modules/contents/node_modules/lodash/internal/arrayConcat.js
ilog-0.3.3 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/arrayConcat.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/arrayConcat.js