Giter VIP home page Giter VIP logo

profanity-filter's Introduction

profanity-filter

Build Status

A static node.js utility for masking words or phrases in strings that aren't allowed.

configuration

There are three methods of replacement, outlined below ('word' requires you specify a replacement for each word):

stars   - That **** UX change was such a pain in the ***
grawlix - That &!%$ UX change was such a pain in the #@%
word    - That darn UX change was such a pain in the badonkadonk

Note: 'stars' is the default method of replacement

methods

filter.clean(string)

Takes supplied string and runs the filter based on the current dictionary of unallowed words and replacement method. Returns the filtered string.

var filter = require('profanity-filter');
console.log(filter.clean('String I\'d like to filter for inappropriate words.'));

filter.seed(name)

Populates the internal filter dictionary using a seed data JSON file (must live in lib/seeds).

var filter = require('profanity-filter');
filter.seed('profanity');

###filter.debug()

Returns the dictionary, replacementMethod, and grawlixChars internal properties for debugging purposes.

var filter = require('profanity-filter');
filter.debug()

filter.setReplacementMethod(string)

Globally sets the method of replacement. Accepts 'stars', 'word', and 'grawlix'.

var filter = require('profanity-filter');
filter.setReplacementMethod('grawlix');

filter.setGrawlixChars(array)

Globally sets the grawlix characters to be used as replacements, if grawlix is the current replacementMethod.

var filter = require('profanity-filter');
filter.setGrawlixChars(['1', '2', '3', '4', '5', '6']);

filter.addWord(string, [string])

Adds a word to the internal replacement dictionary. The optional second parameter is used if the replacementMethod is set to 'word'. If the word method is set and no replacement is passed, the filter will default to 'BLEEP'.

var filter = require('profanity-filter');
filter.addWord('ass', 'badonkadonk');

filter.removeWord(string)

Removes a word from the internal replacement dicitonary.

var filter = require('profanity-filter');
filter.removeWord('ass');

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.