Sha256: f18816d81835e27b700c2a03814a7478d8e5d7e4169d87a666b2b7e9f350fbe0

Contents?: true

Size: 483 Bytes

Versions: 274

Compression:

Stored size: 483 Bytes

Contents

var isIndex = require('./_isIndex');

/**
 * The base implementation of `_.nth` which doesn't coerce arguments.
 *
 * @private
 * @param {Array} array The array to query.
 * @param {number} n The index of the element to return.
 * @returns {*} Returns the nth element of `array`.
 */
function baseNth(array, n) {
  var length = array.length;
  if (!length) {
    return;
  }
  n += n < 0 ? length : 0;
  return isIndex(n, length) ? array[n] : undefined;
}

module.exports = baseNth;

Version data entries

274 entries across 272 versions & 30 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.59 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.58 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.57 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.56 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.55 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.54 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.53 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.52 node_modules/lodash/_baseNth.js
trusty-cms-6.3.1 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.51 node_modules/lodash/_baseNth.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/_baseNth.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.50 node_modules/lodash/_baseNth.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/lodash/_baseNth.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/lodash/_baseNth.js