# tap

like map applys a function to each item in a list, but always returns
the item.

## api

`tap(fn, list)`


## example

```
tap(v => console.log(v), list)
```

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