Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New rule: ban Proxy #733

Open
danielnixon opened this issue Mar 14, 2023 · 0 comments
Open

New rule: ban Proxy #733

danielnixon opened this issue Mar 14, 2023 · 0 comments

Comments

@danielnixon
Copy link
Owner

const target = {
  a: "hello",
};

const handler = {
  get() {
    return 42;
  },
};

const proxy2 = new Proxy(target, handler);

// Explodes at runtime
proxy2.a.toUpperCase();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant