1.0.4 • Published 6 years ago

anti-key-words v1.0.4

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

anti-key-words

To Anti any Dirty Words(zh/en).

在线demo点击这里查看

version 1.0.4

  • 修复打包过程中抛出的异常.

version 1.0.3

  • 修复一些已知问题.

version 1.0.0

  • 支持多达33个脏词、25个独立脏字的过滤筛选

How to start

$ npm install anti-key-words --save

or

$ npm i --save anti-key-words

Usage

ES6 import

import AntiKeyWords from "anti-key-words";
let inputValue = ""; // .. any string (include dirty words)

// initialize antikeywords class.
let antiKeyWords = new AntiKeyWords(inputValue);

antiKeyWords.filterKeyWords();

console.log(antiKeyWords.outputString); // Hi, **

CMD

const AntiKeyWords = require("anti-key-words");

// usage like ES6..

How to contribute

修改ts文件后集成js请执行:

$ npm run prepublishOnly

删除集成js文件

$ npm run clean

发布

$ npm publish

Todo

  • 替换符号自定义功能
  • 关键词json文件自定义功能
  • 优化过滤流程

LICENSE

MIT © TimRChen