aboutsummaryrefslogtreecommitdiff
path: root/webAO/encoding.js
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-09 07:34:56 +0100
committerGitHub <noreply@github.com>2022-03-09 07:34:56 +0100
commit91c3769a78e59924a73db6c759844a9026e8da00 (patch)
tree64ce4ac3e786b31a935be40438d5dc831121f055 /webAO/encoding.js
parent63a282481d033640a87f97b74f31136410c93717 (diff)
parentcb6a2ddb36d27abd12a6d0b9aa493194d4c242a2 (diff)
Merge pull request #100 from caleb-mabry/webp-support
WebAO Partial Image Fixes
Diffstat (limited to 'webAO/encoding.js')
-rw-r--r--webAO/encoding.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/encoding.js b/webAO/encoding.js
index 21b5aa7..e6cc3ae 100644
--- a/webAO/encoding.js
+++ b/webAO/encoding.js
@@ -28,7 +28,7 @@ export function unescapeChat(estring) {
* XXX: This is unnecessary if we use `createTextNode` instead!
* @param {string} unsafe an unsanitized string
*/
-export function safe_tags(unsafe) {
+export function safeTags(unsafe) {
if (unsafe) {
return unsafe
.replace(/>/g, '&gt;')