Skip to content

Instantly share code, notes, and snippets.

@gmcabrita
Last active April 3, 2020 12:26
Show Gist options
  • Save gmcabrita/058425ad6aa748779025f6bd94420d2b to your computer and use it in GitHub Desktop.
Save gmcabrita/058425ad6aa748779025f6bd94420d2b to your computer and use it in GitHub Desktop.
const obj = {};
const handler = {
set(target, key, value) {
console.table("Setting", key, value);
target[key] = value;
},
deleteProperty(target, key) {
console.log(`Deleting ${key}`);
delete target[key];
},
};
const proxyObj = new Proxy(obj, handler);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment