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

censor-sensor

v1.0.6

Published

a better profanity filter

Downloads

4,136

Readme

Censor Sensor

A better profanity filter.

Why?

Every other profanity filter just seems to be an array of words, checked against every word in a phrase. This is ridiculous - it's an O(N^2) check when it only needs to be O(N). Of course, this library, by default, only requires an O(N) check (and that's against your phrase; not my words). You can opt in to a "like" check which will check every word and try to match it to a substring.

Every other profanity filter also seems to neglect "tiers" of words. You might want to filter out slurs, but not common profanity. You can do that here.

If you want, you can pass a function that lets you censor words how you want. By default, it will be replaced with the * character in quantity based on the word (so "fuck" translates to "****").

That said, this library only has a list for english (en), but could be extended to add more fairly easily.

You can remove or add words at run time. By default, they'll be assigned the lowest tier (5).

Words are shamelessly based on profanity-cleanser, because I'm not creative enough to think of some of these.

Install

npm i censor-sensor

Usage

import { CensorSensor } from 'censor-sensor';

const censor = new CensorSensor();

// check for profanity (using equality)
censor.isProfane('bollocks'); // true
censor.isProfane('hello');    // false

// check for profanity (using string.includes)
censor.isProfaneIsh('bollockshead') // true
censor.isProfaneIsh('hello')        // true

// get the words that are profane from a phrase
censor.profaneIshWords('hello')     // ['hell']

// clean profanity (using equality)
censor.cleanProfanity('bollocks')   // '****' (by default)
censor.cleanProfanityIsh('hello')   // '****o' (by default)

// add a custom cleanup function
censor.setCleanFunction((str) => Array.from(str, x => '%').join('')); // replace all bad characters with '%'
censor.cleanProfanity('bollocks')   // '%%%%%%%%' (by default)

// reset the cleanup function
censor.resetCleanFunction()

// modify the banned words list
censor.isProfane('asdf')    // false
censor.addWord('asdf')
censor.isProfane('asdf')    // true
censor.removeWord('asdf')
censor.isProfane('asdf')    // false

// modify the banned "tier"
censor.isProfane('bollocks')    // true
censor.disableTier(4)
censor.isProfane('bollocks')    // false 
censor.enableTier(4);
censor.isProfane('bollocks')    // true

// add a custom locale (dict) and use it
censor.isProfane('uwotm8')                // false
censor.addLocale('custom', { uwotm8: 1 }) // the highest form of insult
censor.setLocale('custom')
censor.isProfane('uwotm8')                // true
censor.setLocale('en')
censor.isProfane('uwotm8')                // false

// remove an existing word from an existing tier
censor.isProfane('hell')  // true
censor.removeWord('hell')
censor.isProfane('hell')  // false

Word Tiers

As stated before, every word has a tier associated with it. Here is what each tier number means:

  1. slurs
  2. common profanity
  3. sexual terms
  4. possibly offensive terms
  5. user-created terms

Contributing

Feel free to contribute words, locales, or features.