arity
arity :: (Number length, Function fn) => Function fndescription
example
import { arity } from 'conductor'
const words = ['hello', 'world']
words.forEach(console.log)
// 'hello' 0 ['hello', 'world']
// 'world' 1 ['hello', 'world']
words.forEach(arity(1, console.log))
// 'hello'
// 'world'Last updated