UNPKG

100 BJavaScriptView Raw
1import { drop } from './drop'
2
3export function tail(listOrString){
4 return drop(1, listOrString)
5}