append
append :: (Any item, Array input) => Array outputdescription
example
import { append } from 'conductor'
append('world', ['hello']) // ['hello', 'world']
append('world')(['hello']) // ['hello', 'world']Last updated
append :: (Any item, Array input) => Array outputimport { append } from 'conductor'
append('world', ['hello']) // ['hello', 'world']
append('world')(['hello']) // ['hello', 'world']Last updated