forEach
forEach :: (Function callback, Collection collection) => undefined | Promise<undefined>description
examples
basic example
import { forEach } from 'conductor'
const numbers = [3, 1, 4]
const log = x => console.log(x)
forEach(numbers, log)
// 3
// 1
// 4Last updated