@ -18690,6 +18690,7 @@ class Plex {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const escapeHtml = (unsafe) => {
if (unsafe) {
return unsafe
.toString()
.replace(/&/g, '&')
@ -18697,6 +18698,8 @@ const escapeHtml = (unsafe) => {
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''');
}
return '';
};
const CSS_STYLE = {
@ -1,5 +1,6 @@
const escapeHtml = (unsafe: any): string => {
@ -7,6 +8,8 @@ const escapeHtml = (unsafe: any): string => {
// eslint-disable-next-line import/prefer-default-export