UNPKG
js-fns
Version:
latest (2.5.2)
2.5.2
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.0
2.1.0
2.0.0
1.0.0
Modern JavaScript utility library focused on the build size
github.com/js-fns/js-fns
js-fns/js-fns
js-fns
/
first
/
index.mjs
13 lines
(12 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 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
] }