Files
JiboViteDocs/node_modules/lodash-es/_copyArray.js
Your Name 38652eb9b5 Initalize
2026-05-03 12:12:57 -04:00

21 lines
452 B
JavaScript

/**
* Copies the values of `source` to `array`.
*
* @private
* @param {Array} source The array to copy values from.
* @param {Array} [array=[]] The array to copy values to.
* @returns {Array} Returns `array`.
*/
function copyArray(source, array) {
var index = -1,
length = source.length;
array || (array = Array(length));
while (++index < length) {
array[index] = source[index];
}
return array;
}
export default copyArray;