Nos78 / MrData

Discord Bot providing some simple scoring using postgres
GNU General Public License v3.0
3 stars 1 forks source link

Objects are passed by reference! #31

Open Nos78 opened 4 years ago

Nos78 commented 4 years ago

Variable assignment behaviour for JSONs, such as the settings, and other objects is to pass by reference. This means that, for example, creating a new setting from the template and then assigning fields actually changes the template too.

Change this to assign the variables by value, using Object.assign() or another method,