dump
description
Transforms a Collection into a new Collection using the provided transformer function.
example
import { dump } from '@waldojeffers/conductor'
import { map } from '@waldojeffers/conductor/transformers'
const times2 = x => 2 * x
dump(map(times2), [3, 1, 4]) // [6, 2, 8]