Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active November 11, 2017 19:23
Show Gist options
  • Save gskachkov/bf578fe4312a7c6ecbdca184d4c6234d to your computer and use it in GitHub Desktop.
Save gskachkov/bf578fe4312a7c6ecbdca184d4c6234d to your computer and use it in GitHub Desktop.
const proxy = new Proxy(
{ id: "id-0" },
{
set: function (target, property, value, receiver) {
if (property.charAt(0) === "_") return false;
target[property] = value;
return true;
}
...
}
);
console.log(proxy);
proxy._id = "_id-1";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment