oxford-join
v0.1.0
Published
Join an array into a string, separated with an Oxford comma.
Downloads
296
Maintainers
Readme
oxford-join
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.