diff options
Diffstat (limited to 'tools/eslint/node_modules/lodash/reverse.js')
-rw-r--r-- | tools/eslint/node_modules/lodash/reverse.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/lodash/reverse.js b/tools/eslint/node_modules/lodash/reverse.js new file mode 100644 index 0000000000..049284911d --- /dev/null +++ b/tools/eslint/node_modules/lodash/reverse.js @@ -0,0 +1,32 @@ +/** 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 _ + * @category Array + * @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 ? nativeReverse.call(array) : array; +} + +module.exports = reverse; |