1
0
Fork 0
mirror of synced 2024-07-01 20:41:03 +12:00

Removing useless statement.

This commit is contained in:
mike12345567 2021-09-27 12:17:59 +01:00
parent 1f474ca106
commit 02a3b7425e

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")