We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73bd198 commit 841666fCopy full SHA for 841666f
1 file changed
lib/helpers/src/string-helper.ts
@@ -108,7 +108,7 @@ export const convertBytes = (str: string) => {
108
return Number.parseInt(str, 10) * BYTE_UNITS[unit];
109
};
110
111
-export const excapeHtml = (html: string) => {
+export const escapeHtml = (html: string) => {
112
return html.replace(/&/g, '&')
113
.replace(/</g, '<')
114
.replace(/>/g, '>')
0 commit comments