fxtwitter-docker/src/utils.ts
2022-07-15 16:01:49 -04:00

7 lines
180 B
TypeScript

export const sanitizeText = (text: string) => {
return text
.replace(/\"/g, '"')
.replace(/\'/g, ''')
.replace(/\</g, '&lt;')
.replace(/\>/g, '&gt;');
};