Skip to content

Instantly share code, notes, and snippets.

@prashantpalikhe
Created July 25, 2018 08:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save prashantpalikhe/768a651d45c94258da25e393bbd98449 to your computer and use it in GitHub Desktop.
Save prashantpalikhe/768a651d45c94258da25e393bbd98449 to your computer and use it in GitHub Desktop.
Devtools snippet to trace property access
const traceProperty = (object, property) => {
let value = object[property];
Object.defineProperty(object, property, {
get () {
console.trace(`${property} requested`);
return value;
},
set (newValue) {
console.trace(`setting ${property} to `, newValue);
value = newValue;
},
})
};
@inoyakaigor
Copy link

I think using Proxy would be better

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment