Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
11010e69b4e87fbc1d60cdc0f9ac2b200cd8c75f
/
.
/
node_modules
/
rambda
/
src
/
tail.js
blob: 4abee129cdb8cac10b5f419c0439d5051d28bd8f [
file
]
import
{
drop
}
from
'./drop.js'
export
function
tail
(
listOrString
){
return
drop
(
1
,
listOrString
)
}