Sha256: b63df24ac4a8708b494862d0ba416dadf7383e81cf4e86e83b86cbb7f94bd259

Contents?: true

Size: 612 Bytes

Versions: 276

Compression:

Stored size: 612 Bytes

Contents

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

/**
 * The base implementation of `_.inRange` which doesn't coerce arguments.
 *
 * @private
 * @param {number} number The number to check.
 * @param {number} start The start of the range.
 * @param {number} end The end of the range.
 * @returns {boolean} Returns `true` if `number` is in the range, else `false`.
 */
function baseInRange(number, start, end) {
  return number >= nativeMin(start, end) && number < nativeMax(start, end);
}

module.exports = baseInRange;

Version data entries

276 entries across 274 versions & 31 rubygems

Version Path
ela-1.1.0 node_modules/lodash/_baseInRange.js
sumomo-0.8.0 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.7.3 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.7.2 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.7.1 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.6.4 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.6.3 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.6.2 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
sumomo-0.6.1 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
affiliator-0.2.1 node_modules/lodash/_baseInRange.js
sumomo-0.6.0 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
guard-sass-lint-0.1.2 node_modules/lodash/_baseInRange.js
guard-sass-lint-0.1.1 node_modules/lodash/_baseInRange.js
lanes-0.8.0 node_modules/lodash/_baseInRange.js
lanes-0.8.0 node_modules/globule/node_modules/lodash/_baseInRange.js
minimum_viable_product-0.0.11 test/dummy/node_modules/lodash/_baseInRange.js