concat
concat :: (A, A) -> Adescription
examples
arrays
import { concat } from 'conductor'
const a = [1, 2]
const b = [2, 3]
concat(a, b) // [1, 2, 2, 3]objects
import { concat } from 'conductor'
const a = { hello: 'Bonsoir', world: 'world' }
const b = { world: 'Elliot' }
concat(a, b) // { hello: 'Bonsoir, world: 'Elliot' }strings
sets
Last updated