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