Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johno/humanize-list
Comma delimit an array for human readability. The Oxford comma is optional.
https://github.com/johno/humanize-list
Last synced: 3 months ago
JSON representation
Comma delimit an array for human readability. The Oxford comma is optional.
- Host: GitHub
- URL: https://github.com/johno/humanize-list
- Owner: johno
- License: mit
- Created: 2015-04-07T17:32:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-18T06:31:08.000Z (about 9 years ago)
- Last Synced: 2024-10-09T09:52:09.109Z (4 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# humanize-list [![Build Status](https://secure.travis-ci.org/johnotander/humanize-list.png?branch=master)](https://travis-ci.org/johnotander/humanize-list)
Comma delimit an array for human readability, the Oxford comma is optional.
## Installation
```bash
npm install --save humanize-list
```## Usage
```javascript
var humanizeList = require('humanize-list')humanizeList(['apples', 'tomatoes', 'unicorns']) // => 'apples, tomatoes and unicorns'
humanizeList(['apples', 'tomatoes', 'unicorns'], { oxfordComma: true }) // => 'apples, tomatoes, and unicorns'
humanizeList(['apples', 'tomatoes', 'unicorns'], { conjunction: 'or' }) // => 'apples, tomatoes or unicorns'
humanizeList(['apples', 'tomatoes', 'unicorns'], { skipConjunction: true }) // => 'apples, tomatoes, unicorns'
```### Options
- `oxfordComma` Boolean - Specify whether the Oxford comma should be included. Default: `false`
- `conjunction` String - Specify a conjunction. Default: `'and'`
- `skipConjunction` Boolean - Skip the conjunction altogether. Default: `false`## License
MIT
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull RequestCrafted with <3 by John Otander ([@4lpine](https://twitter.com/4lpine)).
***
> This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git).