Sha256: b63df24ac4a8708b494862d0ba416dadf7383e81cf4e86e83b86cbb7f94bd259

Contents?: true

Size: 612 Bytes

Versions: 266

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

266 entries across 264 versions & 30 rubygems

Version Path
trusty-cms-5.0.4 node_modules/lodash/_baseInRange.js
appmap-0.71.0 ./node_modules/lodash/_baseInRange.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_baseInRange.js
appmap-0.70.2 ./node_modules/lodash/_baseInRange.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
appmap-0.70.1 ./node_modules/lodash/_baseInRange.js
appmap-0.70.0 ./node_modules/lodash/_baseInRange.js
appmap-0.69.0 ./node_modules/lodash/_baseInRange.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_baseInRange.js
appmap-0.68.2 ./node_modules/lodash/_baseInRange.js
appmap-0.68.1 ./node_modules/lodash/_baseInRange.js
disco_app-0.15.2 test/dummy/node_modules/lodash/_baseInRange.js
appmap-0.68.0 ./node_modules/lodash/_baseInRange.js
appmap-0.67.1 ./node_modules/lodash/_baseInRange.js
trusty-cms-5.0.3 node_modules/lodash/_baseInRange.js
trusty-cms-5.0.2 node_modules/lodash/_baseInRange.js
appmap-0.67.0 ./node_modules/lodash/_baseInRange.js
disco_app-0.18.4 test/dummy/node_modules/lodash/_baseInRange.js
disco_app-0.18.1 test/dummy/node_modules/lodash/_baseInRange.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/lodash/_baseInRange.js