Sha256: 134600a369e098c5f6a5892d2020ce6ad7c51da158b4fec85b80926edee48372

Contents?: true

Size: 850 Bytes

Versions: 265

Compression:

Stored size: 850 Bytes

Contents

/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeCeil = Math.ceil,
    nativeMax = Math.max;

/**
 * The base implementation of `_.range` and `_.rangeRight` which doesn't
 * coerce arguments.
 *
 * @private
 * @param {number} start The start of the range.
 * @param {number} end The end of the range.
 * @param {number} step The value to increment or decrement by.
 * @param {boolean} [fromRight] Specify iterating from right to left.
 * @returns {Array} Returns the range of numbers.
 */
function baseRange(start, end, step, fromRight) {
  var index = -1,
      length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),
      result = Array(length);

  while (length--) {
    result[fromRight ? length : ++index] = start;
    start += step;
  }
  return result;
}

module.exports = baseRange;

Version data entries

265 entries across 263 versions & 30 rubygems

Version Path
immosquare-cleaner-0.1.40 node_modules/lodash/_baseRange.js
sumomo-0.10.8 data/sumomo/api_modules/node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.39 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.38 node_modules/lodash/_baseRange.js
optimacms-0.1.61 spec/dummy/node_modules/lodash/_baseRange.js
boring_generators-0.13.0 tmp/templates/app_template/node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.32 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.31 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.30 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.29 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.28 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.27 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.26 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.25 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.24 node_modules/lodash/_baseRange.js
immosquare-cleaner-0.1.23 node_modules/lodash/_baseRange.js
sumomo-0.10.4 data/sumomo/api_modules/node_modules/lodash/_baseRange.js
sumomo-0.10.3 data/sumomo/api_modules/node_modules/lodash/_baseRange.js
sumomo-0.10.2 data/sumomo/api_modules/node_modules/lodash/_baseRange.js
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/_baseRange.js