mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 11:27:50 +00:00
Remove reverse module.
This commit is contained in:
30
reverse.js
30
reverse.js
@@ -1,30 +0,0 @@
|
|||||||
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
||||||
const nativeReverse = Array.prototype.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).
|
|
||||||
*
|
|
||||||
* @since 4.0.0
|
|
||||||
* @category Array
|
|
||||||
* @param {Array} array The array to modify.
|
|
||||||
* @returns {Array} Returns `array`.
|
|
||||||
* @see flip, sortBy
|
|
||||||
* @example
|
|
||||||
*
|
|
||||||
* const 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)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default reverse
|
|
||||||
Reference in New Issue
Block a user