CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_arrayPush.js21 linesDownload Raw Back to lodash-es
1/**2 * Appends the elements of `values` to `array`.3 *4 * @private5 * @param {Array} array The array to modify.6 * @param {Array} values The values to append.7 * @returns {Array} Returns `array`.8 */9function arrayPush(array, values) {10  var index = -1,11      length = values.length,12      offset = array.length;13 14  while (++index < length) {15    array[offset + index] = values[index];16  }17  return array;18}19 20export default arrayPush;21 
basant307/AI_Governance_Project · CoolFace