summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash/internal/arrayConcat.js
blob: 0d131e39996e90bb05316ef981549e3d39f306b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * 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;