Skip to content

Instantly share code, notes, and snippets.

@frankfenghua
Forked from prashantpalikhe/traceProperty.js
Created October 9, 2019 21:34
Show Gist options
  • Save frankfenghua/12056633f4c084804b2e5cf141bc0349 to your computer and use it in GitHub Desktop.
Save frankfenghua/12056633f4c084804b2e5cf141bc0349 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;
},
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment