UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

4 lines (3 loc) 96 B
export function concat(x) { return y => (typeof x === 'string' ? `${x}${y}` : [...x, ...y]) }