UNPKG
@kowo0403hk/lotide
Version:
latest (1.0.1)
1.0.1
1.0.0
lotide library by LHL Bootcamp student
github.com/kowo0403hk/lotide
kowo0403hk/lotide
@kowo0403hk/lotide
/
head.js
8 lines
(7 loc)
•
153 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
head =
function
(
arr
) {
if
(!(arr
instanceof
Array
) || arr ===
undefined
) {
throw
new
Error
(); }
return
arr[
0
]; };
module
.
exports
= head;