ericclemmons / join

Join a list as a sentence "foo, bar and baz" etc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Join a list as a sentence "foo, bar and baz" etc


Languages

Language:JavaScript 100.0%