Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active November 13, 2017 20:42
Show Gist options
  • Save gskachkov/5fc113ad08474081d0988be740fbf455 to your computer and use it in GitHub Desktop.
Save gskachkov/5fc113ad08474081d0988be740fbf455 to your computer and use it in GitHub Desktop.
function getter () {}
const target = { id: "foo" };
const proxy = new Proxy(target, {
get: getter
});
console.log(proxy.id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment