Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created November 12, 2017 20:02
Show Gist options
  • Save gskachkov/df0c91ea951f5f7ae95ab9afd5343e9a to your computer and use it in GitHub Desktop.
Save gskachkov/df0c91ea951f5f7ae95ab9afd5343e9a to your computer and use it in GitHub Desktop.
var proxy = new Proxy({}, {
ownKeys: function () {
return [ null ];
}
});
Object.keys(proxy); // TypeError: null is not a valid property name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment