Skip to content

Instantly share code, notes, and snippets.

@jbinkleyj
Forked from dmethvin/gist:1676346
Last active August 29, 2015 14:22
Show Gist options
  • Save jbinkleyj/ebca75c593b563084aae to your computer and use it in GitHub Desktop.
Save jbinkleyj/ebca75c593b563084aae to your computer and use it in GitHub Desktop.
function debugAccess(obj, prop, debugGet){
var origValue = obj[prop];
Object.defineProperty(obj, prop, {
get: function () {
if ( debugGet )
debugger;
return origValue;
},
set: function(val) {
debugger;
return origValue = val;
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment