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.27 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.26 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.25 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.24 node_modules/lodash/_baseNth.js
immosquare-cleaner-0.1.23 node_modules/lodash/_baseNth.js
sumomo-0.10.4 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.10.3 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.10.2 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.10.0 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
reed_sdk-1.0.1 node_modules/lodash/_baseNth.js
reed_sdk-1.0.0 node_modules/lodash/_baseNth.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/lodash/_baseNth.js
sumomo-0.9.0 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.8.22 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.8.21 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.8.20 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/_baseNth.js
disco_app-0.18.0 test/dummy/node_modules/lodash/_baseNth.js