0.1.0 • Published 8 years ago

oxford-join v0.1.0

Weekly downloads
55
License
MIT
Repository
github
Last release
8 years ago

oxford-join

Build Status Coverage Status NPM Version

Join an array into a string, separated with an Oxford comma where appropriate.

Now with 100% test coverage!

Use

var join = require('oxford-join');
var invitations = ['the strippers', 'JFK', 'Stalin'];
var text = 'We invited ' + join(invitations) + '.';
> 'We invited the strippers, JFK, and Stalin.'

Contributions

We'll happily accept pull requests and improvements.