npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nepali-profanity-detector

v1.3.2

Published

Detect Nepali profane words with configurable options.

Downloads

5

Readme

nepali-profanity-detector

Detect Nepali profane words with configurable options.

Install

npm i nepali-profanity-detector

Usage

import { hasProfane } from "nepali-profanity-detector";

console.log(hasProfane("Oi muji")); // true
console.log(hasProfane("Oi mUjI")); // true
console.log(hasProfane("Oi yaar")); // false

// detects accent by default
console.log(hasProfane("Oi ḿüjį")); // true

// change behavior to throw error
hasProfane("Oi muji", { behavior: "THROW_ERR" }); // throws new Error("Nepali profanity detected")

// change behavior to throw custom error
hasProfane("Oi muji", {
  behavior: "THROW_ERR",
  error: new AppError("My Custom Error", 400),
}); // throws new new AppError("My Custom Error", 400)

// add your custom profane by blacklisting them
console.log(hasProfane("test", { blacklist: ["test"] })); // true

// whitelist your custom words
console.log(hasProfane("muji", { whitelist: ["muji"] })); // false

You also have the option to import Behavior as follows:

import { hasProfane, Behavior } from "nepali-profanity-detector";

// throws error
hasProfane("muji", { behavior: Behavior.THROW_ERR });

// returns boolean, also default behavior so you can omit behavior option
hasProfane("muji", { behavior: Behavior.RETURN_BOOLEAN });

options

| Key | Description | Default | | ---------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------- | | includeAccents | Allows accents like ä to be interpreted as a. | true | | trimSymbols | Removes any non-alphanumeric characters. For eg. m.u.j.i will be interpreted as muji. | true | | behavior | Change whether the function should return boolean or throw error if profanity is detected. | Behavior.RETURN_BOOLEAN | | error | Pass custom error to be thrown IF behavior is set to "THROW_ERR" or Behavior.THROW_ERR | new Error("Nepali profanity detected") | | blacklist | Pass your custom profane words in an array of strings. | [] | | whitelist | Pass your custom words to be ignored when detecting profane. | [] |

Precedence

Whitelisting words take precedence over blacklisting the same words.

Roadmap

  • [x] Handle Accents
  • [x] Throw Error Behaviour Option
  • [x] Usage Documentation with examples
  • [ ] @use JSDoc
  • [x] Whitelisting support
  • [x] Further Blacklisting support
  • [ ] Automate Code Linting
  • [ ] Test Coverage
  • [ ] Handle Leetspeaks