CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
reverse.js35 linesDownload Raw Back to lodash-es
1/** Used for built-in method references. */2var arrayProto = Array.prototype;3 4/* Built-in method references for those with the same name as other `lodash` methods. */5var nativeReverse = arrayProto.reverse;6 7/**8 * Reverses `array` so that the first element becomes the last, the second9 * element becomes the second to last, and so on.10 *11 * **Note:** This method mutates `array` and is based on12 * [`Array#reverse`](https://mdn.io/Array/reverse).13 *14 * @static15 * @memberOf _16 * @since 4.0.017 * @category Array18 * @param {Array} array The array to modify.19 * @returns {Array} Returns `array`.20 * @example21 *22 * var array = [1, 2, 3];23 *24 * _.reverse(array);25 * // => [3, 2, 1]26 *27 * console.log(array);28 * // => [3, 2, 1]29 */30function reverse(array) {31  return array == null ? array : nativeReverse.call(array);32}33 34export default reverse;35 
basant307/AI_Governance_Project · CoolFace