Skip to content

Instantly share code, notes, and snippets.

@OliDM
Created October 23, 2014 19:35
Show Gist options
  • Save OliDM/08040732a2be3ae97b19 to your computer and use it in GitHub Desktop.
Save OliDM/08040732a2be3ae97b19 to your computer and use it in GitHub Desktop.
function WatchedProp (obj, prop){
obj["_"+prop] = obj[prop];
// overwrite with accessor
Object.defineProperty(obj, prop, {
get: function () {
return obj["_"+prop];
},
set: function (value) {
debugger; // sets breakpoint
//if(value)
obj["_"+prop] = value;
}
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment