Sha256: 667858f0346927588f8a09469b8999e74e236c7569c4d8f46e772ed7d391ab8d

Contents?: true

Size: 671 Bytes

Versions: 282

Compression:

Stored size: 671 Bytes

Contents

var baseNth = require('./_baseNth'),
    toInteger = require('./toInteger');

/**
 * Gets the element at index `n` of `array`. If `n` is negative, the nth
 * element from the end is returned.
 *
 * @static
 * @memberOf _
 * @since 4.11.0
 * @category Array
 * @param {Array} array The array to query.
 * @param {number} [n=0] The index of the element to return.
 * @returns {*} Returns the nth element of `array`.
 * @example
 *
 * var array = ['a', 'b', 'c', 'd'];
 *
 * _.nth(array, 1);
 * // => 'b'
 *
 * _.nth(array, -2);
 * // => 'c';
 */
function nth(array, n) {
  return (array && array.length) ? baseNth(array, toInteger(n)) : undefined;
}

module.exports = nth;

Version data entries

282 entries across 278 versions & 32 rubygems

Version Path
rapid_stack-0.2.0 templates/frontend/node_modules/lodash/nth.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/lodash/nth.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/lodash/nth.js
immosquare-cleaner-0.1.60 node_modules/lodash/nth.js
immosquare-cleaner-0.1.59 node_modules/lodash/nth.js
immosquare-cleaner-0.1.58 node_modules/lodash/nth.js
immosquare-cleaner-0.1.57 node_modules/lodash/nth.js
immosquare-cleaner-0.1.56 node_modules/lodash/nth.js
immosquare-cleaner-0.1.55 node_modules/lodash/nth.js
immosquare-cleaner-0.1.54 node_modules/lodash/nth.js
immosquare-cleaner-0.1.53 node_modules/lodash/nth.js
immosquare-cleaner-0.1.52 node_modules/lodash/nth.js
trusty-cms-6.3.1 node_modules/lodash/nth.js
immosquare-cleaner-0.1.51 node_modules/lodash/nth.js
boring_generators-0.15.0 tmp/templates/app_template/node_modules/lodash/nth.js
clapton-0.0.26 lib/clapton/javascripts/node_modules/lodash/nth.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/lodash/nth.js
immosquare-cleaner-0.1.50 node_modules/lodash/nth.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/lodash/nth.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/lodash/nth.js