# tail

a list function that returns everything but the first item of the list.

## Example

```
console.log(tail([4,5,6,7]))
#> [5,6,7]
```

[README](../../../README.md)
