blob: cf0b61f130f383ae492beeda434ac7e69f5adeea [file] [log] [blame] [edit]
export function concat(x, y){
if (arguments.length === 1) return _y => concat(x, _y)
return typeof x === 'string' ? `${ x }${ y }` : [ ...x, ...y ]
}