UNPKG

js-fns

Version:

Modern JavaScript utility library focused on the build size

13 lines (12 loc) 246 B
/** * Returns the first element of the array. * * @param array - The array to return the first element from * @returns The first element of the array * * @category Array * @public */ export default function first(arr) { return arr[0] }