mirror of
https://github.com/FlipsideCrypto/og-image.git
synced 2026-02-06 10:46:43 +00:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
const entityMap: { [key: string]: string } = {
|
|
"&": "&",
|
|
"<": "<",
|
|
">": ">",
|
|
'"': '"',
|
|
"'": ''',
|
|
"/": '/'
|
|
};
|
|
|
|
export function sanitizeHtml(html: string) {
|
|
return String(html).replace(/[&<>"'\/]/g, key => entityMap[key]);
|
|
}
|
|
|