You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
063436a3dd
publish it |
5 years ago | |
---|---|---|
.. | ||
lib | 5 years ago | |
test | 5 years ago | |
.npmignore | 5 years ago | |
LICENSE | 5 years ago | |
Makefile | 5 years ago | |
README.md | 5 years ago | |
package.json | 5 years ago |
README.md
badwords-list v1.0.0
A highly consumable list of bad (profanity) english words based on the nice short and simple list found in Google's "what do you love" project made accessable by Jamie Wilkinson here
Inspired by badwords
This data has been exposed as an object that contains
- an array
- an object
- a regular expression
depending on what is required for your purposes.
Install
npm install badwords-list
Usage
var list = require('badwords-list'),
array = list.array,
object = list.object,
regex = list.regex;
Testing
####Requires
- Mocha
- better-assert
npm test
or
REPORTER=spec make
or
mocha