mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 21:42:34 +00:00
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
export function escapeXml(unsafe: string): string {
|
|
return unsafe.replace(/&/g, '&')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, ''')
|
|
}
|