fxtwitter-docker/src/helpers/utils.ts
2023-02-02 17:17:32 -05:00

20 lines
507 B
TypeScript

export const sanitizeText = (text: string) => {
return text
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
};
export const unescapeText = (text: string) => {
return text
.replace(/&#34;/g, '"')
.replace(/&#39;/g, "'")
.replace(/&lt;/g, '<')
.replace(/&gt;/g, '>')
.replace(/&amp;/g, '&');
};
const numberFormat = new Intl.NumberFormat('en-US');
export const formatNumber = (num: number) => numberFormat.format(num);