UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

6 lines (4 loc) 155 B
export function concat(x, y){ if (arguments.length === 1) return _y => concat(x, _y) return typeof x === 'string' ? `${ x }${ y }` : [ ...x, ...y ] }