projects
/
arvados-workbench2.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
15781: Adds tests for resource properties util functions.
[arvados-workbench2.git]
/
src
/
lib
/
cwl-svg
/
utils
/
html-utils.ts
1
export class HtmlUtils {
2
3
private static entityMap = {
4
"&": "&",
5
"<": "<",
6
">": ">",
7
"\"\"": """,
8
"'": "'",
9
"/": "/"
10
};
11
12
public static escapeHTML(source: string): string {
13
return String(source).replace(/[&<>"'\/]/g, s => HtmlUtils.entityMap[s]);
14
}
15
}