mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import createRange from './.internal/createRange.js';
|
||||
import createRange from './.internal/createRange.js'
|
||||
|
||||
/**
|
||||
* This method is like `range` except that it populates values in
|
||||
@@ -13,27 +13,27 @@ import createRange from './.internal/createRange.js';
|
||||
* @see inRange, range
|
||||
* @example
|
||||
*
|
||||
* rangeRight(4);
|
||||
* rangeRight(4)
|
||||
* // => [3, 2, 1, 0]
|
||||
*
|
||||
* rangeRight(-4);
|
||||
* rangeRight(-4)
|
||||
* // => [-3, -2, -1, 0]
|
||||
*
|
||||
* rangeRight(1, 5);
|
||||
* rangeRight(1, 5)
|
||||
* // => [4, 3, 2, 1]
|
||||
*
|
||||
* rangeRight(0, 20, 5);
|
||||
* rangeRight(0, 20, 5)
|
||||
* // => [15, 10, 5, 0]
|
||||
*
|
||||
* rangeRight(0, -4, -1);
|
||||
* rangeRight(0, -4, -1)
|
||||
* // => [-3, -2, -1, 0]
|
||||
*
|
||||
* rangeRight(1, 4, 0);
|
||||
* rangeRight(1, 4, 0)
|
||||
* // => [1, 1, 1]
|
||||
*
|
||||
* rangeRight(0);
|
||||
* rangeRight(0)
|
||||
* // => []
|
||||
*/
|
||||
const rangeRight = createRange(true);
|
||||
const rangeRight = createRange(true)
|
||||
|
||||
export default rangeRight;
|
||||
export default rangeRight
|
||||
|
||||
Reference in New Issue
Block a user