source: imaps-frontend/node_modules/lodash-es/_baseNth.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 481 bytes
Line 
1import isIndex from './_isIndex.js';
2
3/**
4 * The base implementation of `_.nth` which doesn't coerce arguments.
5 *
6 * @private
7 * @param {Array} array The array to query.
8 * @param {number} n The index of the element to return.
9 * @returns {*} Returns the nth element of `array`.
10 */
11function baseNth(array, n) {
12 var length = array.length;
13 if (!length) {
14 return;
15 }
16 n += n < 0 ? length : 0;
17 return isIndex(n, length) ? array[n] : undefined;
18}
19
20export default baseNth;
Note: See TracBrowser for help on using the repository browser.