mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
export const sanitizeText = (text: string) => {
|
|
return text
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, ''')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>');
|
|
};
|
|
|
|
export const unescapeText = (text: string) => {
|
|
return text
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, "'")
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
.replace(/&/g, '&');
|
|
};
|
|
|
|
const numberFormat = new Intl.NumberFormat('en-US');
|
|
|
|
export const formatNumber = (num: number) => numberFormat.format(num);
|