conductor
Version:
A modern & functional JavaScript utility library
25 lines (16 loc) • 450 B
Markdown
description: Transform a collection into another one of the same type
# dump
```erlang
dump: (Transformer fn, Collection input) => Collection output
```
## description
Transforms a `Collection` into a new `Collection` using the provided transformer function.
## example
```javascript
import { dump } from 'conductor'
import { map } from 'conductor/transformers'
const times2 = x => 2 * x
dump(map(times2), [3, 1, 4]) // [6, 2, 8]
```