Prechádzať zdrojové kódy

Removed unneeded brackets

Jonathan 8 rokov pred
rodič
commit
b2b8fa8ce5
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      backend/logic/global.js

+ 1 - 1
backend/logic/global.js

@@ -44,7 +44,7 @@ class Timer {
 module.exports = {
 	io: null, // Socket.io
 	db: null, // Database
-	htmlEntities: (str) => {
+	htmlEntities: str => {
 		return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
 	},
 	Timer