Urara-Blog/node_modules/.pnpm-store/v3/files/68/2807e8899fc43fbfd26dd2fc6ef0b7db36263fedf67f4cbf07b4b6560565597eef575d94e9194b88bf3cee7df6ba04f18638f81a7da1c7f68ffa8fd105939c
2022-08-14 01:14:53 +08:00

34 lines
844 B
Text

/** Used for built-in method references. */
var arrayProto = Array.prototype;
/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeReverse = arrayProto.reverse;
/**
* Reverses `array` so that the first element becomes the last, the second
* element becomes the second to last, and so on.
*
* **Note:** This method mutates `array` and is based on
* [`Array#reverse`](https://mdn.io/Array/reverse).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Array
* @param {Array} array The array to modify.
* @returns {Array} Returns `array`.
* @example
*
* var array = [1, 2, 3];
*
* _.reverse(array);
* // => [3, 2, 1]
*
* console.log(array);
* // => [3, 2, 1]
*/
function reverse(array) {
return array == null ? array : nativeReverse.call(array);
}
module.exports = reverse;