From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck <contact@minteck.org> Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- alarm/node_modules/lodash/reverse.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 alarm/node_modules/lodash/reverse.js (limited to 'alarm/node_modules/lodash/reverse.js') diff --git a/alarm/node_modules/lodash/reverse.js b/alarm/node_modules/lodash/reverse.js deleted file mode 100644 index 21764af..0000000 --- a/alarm/node_modules/lodash/reverse.js +++ /dev/null @@ -1,34 +0,0 @@ -/** 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; -- cgit