mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Bump to v4.0.0.
This commit is contained in:
31
internal/createRange.js
Normal file
31
internal/createRange.js
Normal file
@@ -0,0 +1,31 @@
|
||||
import baseRange from './baseRange';
|
||||
import isIterateeCall from './isIterateeCall';
|
||||
import toNumber from '../toNumber';
|
||||
|
||||
/**
|
||||
* Creates a `_.range` or `_.rangeRight` function.
|
||||
*
|
||||
* @private
|
||||
* @param {boolean} [fromRight] Specify iterating from right to left.
|
||||
* @returns {Function} Returns the new range function.
|
||||
*/
|
||||
function createRange(fromRight) {
|
||||
return function(start, end, step) {
|
||||
if (step && typeof step != 'number' && isIterateeCall(start, end, step)) {
|
||||
end = step = undefined;
|
||||
}
|
||||
// Ensure the sign of `-0` is preserved.
|
||||
start = toNumber(start);
|
||||
start = start === start ? start : 0;
|
||||
if (end === undefined) {
|
||||
end = start;
|
||||
start = 0;
|
||||
} else {
|
||||
end = toNumber(end) || 0;
|
||||
}
|
||||
step = step === undefined ? (start < end ? 1 : -1) : (toNumber(step) || 0);
|
||||
return baseRange(start, end, step, fromRight);
|
||||
};
|
||||
}
|
||||
|
||||
export default createRange;
|
||||
Reference in New Issue
Block a user