expletives
TypeScript icon, indicating that this package has built-in type declarations

0.1.5 • Public • Published

Expletives

A list of bad words and some helper functions to check for them.

Installation

npm install expletives

Usage

// Simple list of words
import { badWords } from 'expletives';
console.log("Every bad word you can think of", badWords);

// Check a string
import { hasBadWords } from 'expletives';

if (!hasBadWords('Hello World')) {
    console.log('Clean as a whistle');
}

if (hasBadWords('f4ck')) {
    console.log('Dirty as a doorknob');
}

API

// import any of these into your project as needed
const exports = {
    badWords: string
    badWordsArray: string[]
    minimalBadWordsArray: string[]
    hasBadWords: (string) => true,
    nazi: (string) => true,
    nword: (string) => true
};

Contributions

Contributions welcome, please submit a PR and I'll review it.

Contribution Ideas

  • Sensitive words and phrases that might not be outright offensive
  • Group different kinds of offensive together

Note on Filtering by Word Match

"Bad words" implementations are prone to the Scunthorpe Problem - please use with care

Dependents (1)

Package Sidebar

Install

npm i expletives

Weekly Downloads

91

Version

0.1.5

License

MIT

Unpacked Size

79.1 kB

Total Files

19

Last publish

Collaborators

  • shawticus