GorkemsCafe/node_modules/badwords-list
2023-09-28 18:03:39 +03:00
..
lib added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
test added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
.npmignore added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
LICENSE added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
Makefile added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
package.json added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00
README.md added speech bubble and profanity filter 2023-09-28 18:03:39 +03:00

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