COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220221808/https://github.com/lodash/lodash/blob/master/nth.js
Permalink
Cannot retrieve contributors at this time
31 lines (29 sloc)
686 Bytes
import isIndex from './.internal/isIndex.js'
/**
* Gets the element at index `n` of `array`. If `n` is negative, the nth
* element from the end is returned.
*
* @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
*
* const array = ['a', 'b', 'c', 'd']
*
* nth(array, 1)
* // => 'b'
*
* nth(array, -2)
* // => 'c'
*/
function nth ( array , n ) {
const length = array == null ? 0 : array . length
if ( !length ) {
return
}
n += n < 0 ? length : 0
return isIndex ( n , length ) ? array [ n ] : undefined
}
export default nth
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.