no-swears:清理您JavaScript字符串并删除那些肮脏的单词

时间:2024-06-15 04:24:33
【文件属性】:

文件名称:no-swears:清理您JavaScript字符串并删除那些肮脏的单词

文件大小:5KB

文件格式:ZIP

更新时间:2024-06-15 04:24:33

filter profanity swearing JavaScript

不发誓 自动过滤掉字符串中的脏话 用于检查JavaScript字符串中脏话的非常简单的程序包,用“ ****”替换有问题的词。 用法 npm install --save no-swears "use strict" ; const noswears = require ( "no-swears" ) ; filterSwearWords(字符串,回调) 这是最基本的过滤功能,需要有问题的字符串和回调,将清理后的字符串返回给程序。 let badString = "this is a bitching string" ; noswears . filterSwearWords ( badString , ( goodString ) => { console . log ( goodString ) ; // "this is a ****ing string" } ) ;


【文件预览】:
no-swears-master
----package.json(576B)
----package-lock.json(72B)
----swearwords.txt(491B)
----LICENSE(1KB)
----index.js(1KB)
----test.js(1KB)
----.eslintrc.js(572B)
----README.md(1KB)
----swearList.js(579B)
----.prettierrc(106B)

网友评论