UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

6 lines (4 loc) 126 B
export function join(glue, list){ if (arguments.length === 1) return _list => join(glue, _list) return list.join(glue) }