first version

This commit is contained in:
2021-11-01 22:30:51 +08:00
parent da2a96865c
commit d964439624
143 changed files with 29617 additions and 101 deletions
+9
View File
@@ -0,0 +1,9 @@
import xss from 'xss';
/**
* xss防护
* @param text 要处理的文字
*/
export default function processXss(text: string) {
return xss(text);
}