I have an object, for example:
var o = {
a: 1
};
The user does:
o.a = 2;
How can I know if the o object has been modified? I cannot touch the o object so I cannot use Object.defineProperties().
|
I have an object, for example:
The user does:
How can I know if the |
|||||
|
|
Since you are in the node.js environment and thus don't have to care about crappy old JavaScript engines (i.e. old browsers) you can use
Whenever a value is assigned to |
|||||||
|
|
The easiest thing would obviously be to just check if the value is different than what you initialized it as. Another option would be to use
|
|||||
|
Basically, you are just creating a variable which will save the Also, you can do a |
|||
|
|
|
You could always wrap
A better solution would be to execute an event using something like
I'm using the |
||||
|
|