UNPKG
@otbi/lotide
Version:
latest (1.0.1)
1.0.1
1.0.0
Lighthouse Lotide
github.com/Oluwatobii/lotide
Oluwatobii/lotide
@otbi/lotide
/
head.js
11 lines
(9 loc)
•
171 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// FUNCTION IMPLEMENTATION
const
head
=
function
(
array
)
{
if
(
array
.length >=
1
) {
return
array
[
0
]; }
else
{
return
undefined; } }; module.exports = head;