From 27644a7bd52691fc746b9d6d83326a77a198bd47 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 18 Feb 2017 09:13:33 -0800 Subject: [PATCH] Remove `reverse` module. --- reverse.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 reverse.js diff --git a/reverse.js b/reverse.js deleted file mode 100644 index f49c83bd8..000000000 --- a/reverse.js +++ /dev/null @@ -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