Skip to main content
Module

x/rambda/join.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function join(glue, list){ if (arguments.length === 1) return _list => join(glue, _list)
return list.join(glue)}