UNPKG
repture
Version:
latest (1.0.0)
1.0.0
Lightweight JavaScript ES6 based utility library
github.com/theahmadzai/repture
theahmadzai/repture
repture
/
src
/
array
/
tail.ts
6 lines
(5 loc)
•
122 B
text/typescript
View Raw
1
2
3
4
5
6
export
default
function
tail
(
array
: Array<any>
)
{
if
(
array
==
null
)
return
[];
const
[, ...r] =
array
;
return
r; }