Removing useless statement.

This commit is contained in:
mike12345567 2021-09-27 12:17:59 +01:00
parent 1f474ca106
commit 02a3b7425e
1 changed files with 0 additions and 1 deletions

View File

@ -110,7 +110,6 @@ exports.deleteEntityMetadata = async (appId, type, entityId) => {
exports.escapeDangerousCharacters = string => {
return string
.replace(/[\\]/g, "\\\\")
.replace(/[\/]/g, "\\/")
.replace(/[\b]/g, "\\b")
.replace(/[\f]/g, "\\f")
.replace(/[\n]/g, "\\n")