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

1.0.1 • Public • Published

beyefendi

Library Purpose: Bad Word Checker

The library serves to:

Check for Bad Words (Boolean): Determine whether a given text contains any predefined bad words. Censor Bad Words: Optionally replace identified bad words in a text with asterisks or another specified character. The goal is to offer a tool for identifying and handling potentially inappropriate language within textual content.

Installation

npm i beyefendi

Usage

import {checkFill} from "beyefendi"


const isHaveBad = checkFill({text:"word1"}) // return true
const filteredText = checkFill({text:"word1",returnType:1})  // return '*****'
const filteredOptions = checkFill({text:"word1",addWords:["word5,word6"],deleteWords:["word1","word2"]}) // return false
// defaultWords.js
export const defaultWords = ["word1", "word2", "word3"]; //  You can also write new words into the default Words array.

Readme

Keywords

Package Sidebar

Install

npm i beyefendi

Weekly Downloads

7

Version

1.0.1

License

MIT

Unpacked Size

5.89 kB

Total Files

9

Last publish

Collaborators

  • vol4tile