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

1.0.6 • Public • Published

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

/adults/

    Package Sidebar

    Install

    npm i adults

    Weekly Downloads

    23

    Version

    1.0.6

    License

    ISC

    Unpacked Size

    6.27 kB

    Total Files

    11

    Last publish

    Collaborators

    • jimcute