# flatten

takes a list of lists and reduces it to one list of values.

## api

`[[a]] -> [a]`

list = flatten([list1, list2])

## example

```
flatten([[1,2], [3,4], [5]])
#> [1,2,3,4,5]
```

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