join-component
v1.1.0
Published
Join a list
Downloads
5,304,133
Readme
join
Join a list in a nice human friendly way.
Installation
$ component install component/join
API
join(arr)
should default to "and".
join(['foo', 'bar']).should.equal('foo and bar');
join(arr, str)
should join.
join([], 'and').should.equal('');
join(['foo'], 'and').should.equal('foo');
join(['foo', 'bar'], 'and').should.equal('foo and bar');
join(['foo', 'bar', 'raz'], 'or').should.equal('foo, bar or raz');
License
MIT