Sha256: 5df69d6963ecb7c6319a26005341dcae0d94daf86b822be3cfb4cc29cd3f029d

Contents?: true

Size: 756 Bytes

Versions: 300

Compression:

Stored size: 756 Bytes

Contents

/**
 * The base implementation of `_.slice` without an iteratee call guard.
 *
 * @private
 * @param {Array} array The array to slice.
 * @param {number} [start=0] The start position.
 * @param {number} [end=array.length] The end position.
 * @returns {Array} Returns the slice of `array`.
 */
function baseSlice(array, start, end) {
  var index = -1,
      length = array.length;

  if (start < 0) {
    start = -start > length ? 0 : (length + start);
  }
  end = end > length ? length : end;
  if (end < 0) {
    end += length;
  }
  length = start > end ? 0 : ((end - start) >>> 0);
  start >>>= 0;

  var result = Array(length);
  while (++index < length) {
    result[index] = array[index + start];
  }
  return result;
}

module.exports = baseSlice;

Version data entries

300 entries across 276 versions & 32 rubygems

Version Path
disco_app-0.18.2 test/dummy/node_modules/lodash/_baseSlice.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/_baseSlice.js
trusty-cms-5.0.7 node_modules/lodash/_baseSlice.js
appmap-0.72.2 ./node_modules/lodash/_baseSlice.js
trusty-cms-5.0.6 node_modules/lodash/_baseSlice.js
appmap-0.72.1 ./node_modules/lodash/_baseSlice.js
appmap-0.72.0 ./node_modules/lodash/_baseSlice.js
trusty-cms-5.0.5 node_modules/lodash/_baseSlice.js
trusty-cms-5.0.4 node_modules/lodash/_baseSlice.js
appmap-0.71.0 ./node_modules/lodash/_baseSlice.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_baseSlice.js
appmap-0.70.2 ./node_modules/lodash/_baseSlice.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_baseSlice.js
appmap-0.70.1 ./node_modules/lodash/_baseSlice.js
appmap-0.70.0 ./node_modules/lodash/_baseSlice.js
appmap-0.69.0 ./node_modules/lodash/_baseSlice.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_baseSlice.js
appmap-0.68.2 ./node_modules/lodash/_baseSlice.js
appmap-0.68.1 ./node_modules/lodash/_baseSlice.js
disco_app-0.15.2 test/dummy/node_modules/lodash/_baseSlice.js