mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 10:27:28 -07:00
38 lines
848 B
TypeScript
38 lines
848 B
TypeScript
const map: Record<string, string> = {
|
|
"&": "&",
|
|
"<": "<",
|
|
">": ">",
|
|
'"': """,
|
|
"'": "'",
|
|
};
|
|
|
|
const beginingOfCDATA = "<![CDATA[";
|
|
const endOfCDATA = "]]>";
|
|
|
|
export function escapeValue(x: string): string {
|
|
let insideOfCDATA = false;
|
|
let builder = "";
|
|
for (let i = 0; i < x.length; ) {
|
|
if (insideOfCDATA) {
|
|
if (x.slice(i, i + beginingOfCDATA.length) === beginingOfCDATA) {
|
|
insideOfCDATA = true;
|
|
i += beginingOfCDATA.length;
|
|
} else {
|
|
builder += x[i++];
|
|
}
|
|
} else {
|
|
if (x.slice(i, i + endOfCDATA.length) === endOfCDATA) {
|
|
insideOfCDATA = false;
|
|
i += endOfCDATA.length;
|
|
} else {
|
|
const b = x[i++];
|
|
builder += map[b] || b;
|
|
}
|
|
}
|
|
}
|
|
return builder;
|
|
}
|
|
|
|
export function escapeAttribute(x: string): string {
|
|
return Object.entries(map).reduce((a, [k, v]) => a.replace(k, v), x);
|
|
}
|