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/20201220221222/https://github.com/lodash/lodash/blob/master/initial.js
Permalink
Cannot retrieve contributors at this time
20 lines (18 sloc)
415 Bytes
import slice from './slice.js'
/**
* Gets all but the last element of `array`.
*
* @since 0.1.0
* @category Array
* @param {Array } array The array to query.
* @returns {Array } Returns the slice of `array`.
* @example
*
* initial([1, 2, 3])
* // => [1, 2]
*/
function initial ( array ) {
const length = array == null ? 0 : array . length
return length ? slice ( array , 0 , - 1 ) : [ ]
}
export default initial
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.