forked from sombochea/verdaccio-ui
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
import parseXSS from 'xss';
|
|
|
|
export function preventXSS(text: string): string {
|
|
const encodedText = parseXSS.filterXSS(text);
|
|
|
|
return encodedText;
|
|
}
|