81aa21915b
* Create xml.ts * Update well-known.ts * Update well-known.ts * Fix typo * Update well-known.ts * Update well-known.ts
42 lines
854 B
TypeScript
42 lines
854 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);
|
|
}
|