CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
last.js21 linesDownload Raw Back to lodash-es
1/**2 * Gets the last element of `array`.3 *4 * @static5 * @memberOf _6 * @since 0.1.07 * @category Array8 * @param {Array} array The array to query.9 * @returns {*} Returns the last element of `array`.10 * @example11 *12 * _.last([1, 2, 3]);13 * // => 314 */15function last(array) {16  var length = array == null ? 0 : array.length;17  return length ? array[length - 1] : undefined;18}19 20export default last;21 
basant307/AI_Governance_Project · CoolFace