Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/reverse.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

34 lines (31 sloc)
844 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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; |