1.0.6 • Published 2 years ago

adults v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

GitHub Workflow Status (branch) npm

adults

A simple JavaScript / TypeScript library to detect bad words. Use it with your custom list of bad words.

Installation

npm install adults

Usage

// TypeScript Usage
import { addWords, isBad } from 'adults';

// JavaScript Usage
const { addWords, isBad} = require('adults');

addWords('some', 'custom', 'word'); // add your list of custom words here

const isBadWord = isBad('This is a sample xxx content', 'Some more custom word content here');

console.log(isBadWord);

// OUTPUT true

const isItBad = isBad('Hey StackBlogger!');

console.log(isItBad);

// OUTPUT false

License

MIT

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago