Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / lodash / internal / arrayConcat.js
1 /**
2  * Creates a new array joining `array` with `other`.
3  *
4  * @private
5  * @param {Array} array The array to join.
6  * @param {Array} other The other array to join.
7  * @returns {Array} Returns the new concatenated array.
8  */
9 function arrayConcat(array, other) {
10   var index = -1,
11       length = array.length,
12       othIndex = -1,
13       othLength = other.length,
14       result = Array(length + othLength);
15
16   while (++index < length) {
17     result[index] = array[index];
18   }
19   while (++othIndex < othLength) {
20     result[index++] = other[othIndex];
21   }
22   return result;
23 }
24
25 module.exports = arrayConcat;