GI
git-ced/redact
Censors blacklisted words with built in lists of words that can be used.
redact
Censors blacklisted words with built in lists of words that can be used.
Table of Contents
Installation
This library is available through the npm registry.
NPM
$ npm -i @princedev/redactYarn
$ yarn add @princedev/redactImport
Start using it by importing the library first.
CommonJS
const redact = require('@princedev/redact');ES6
import { redact } from '@princedev/redact';Usage
Redact or censor a word from a sentence
import { redact } from '@princedev/redact';
const englishProfanity = ['fuck', 'shit', ...];
redact('Fuck yeah', englishProfanity,);
// output: **** yeah
redact('Fuck yeah', englishProfanity, {
grawlix: '$',
replaceByLength: false,
});
// output: $ yeahCan also be done in this way.
import redact from '@princedev/redact';
const englishProfanity = ['fuck', 'shit', ...];
redact.redact('Fuck yeah', englishProfanity);
// output: **** yeah
redact.redact('Fuck yeah', englishProfanity, {
grawlix: '$',
replaceByLength: false,
});
// output: $ yeahRead the docs for more.
Authors
- Prince Neil Cedrick Castro - Initial work
See also the list of contributors who participated in this project.
Changelog
License
On this page
Languages
TypeScript92.1%JavaScript7.9%
Contributors
Latest Release
v1.0.0June 26, 2020MIT License
Created June 25, 2020
Updated March 9, 2023