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/rangeRight.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

41 lines (39 sloc)
862 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
var createRange = require('./_createRange'); | |
/** | |
* This method is like `_.range` except that it populates values in | |
* descending order. | |
* | |
* @static | |
* @memberOf _ | |
* @since 4.0.0 | |
* @category Util | |
* @param {number} [start=0] The start of the range. | |
* @param {number} end The end of the range. | |
* @param {number} [step=1] The value to increment or decrement by. | |
* @returns {Array} Returns the range of numbers. | |
* @see _.inRange, _.range | |
* @example | |
* | |
* _.rangeRight(4); | |
* // => [3, 2, 1, 0] | |
* | |
* _.rangeRight(-4); | |
* // => [-3, -2, -1, 0] | |
* | |
* _.rangeRight(1, 5); | |
* // => [4, 3, 2, 1] | |
* | |
* _.rangeRight(0, 20, 5); | |
* // => [15, 10, 5, 0] | |
* | |
* _.rangeRight(0, -4, -1); | |
* // => [-3, -2, -1, 0] | |
* | |
* _.rangeRight(1, 4, 0); | |
* // => [1, 1, 1] | |
* | |
* _.rangeRight(0); | |
* // => [] | |
*/ | |
var rangeRight = createRange(true); | |
module.exports = rangeRight; |