The Wayback Machine - https://web.archive.org/web/20201220221222/https://github.com/lodash/lodash/blob/master/initial.js
Skip to content
Permalink
master
Go to file
 
 
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.