We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Testing #2218
The duplicate here is not a problem because the code is not in strict mode (also tried running it and node runs it just fine):
// "use strict"; var o = { p: 1, p: 2}; console.log(o);
I have also found the following interesting note at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode:
The text was updated successfully, but these errors were encountered:
The same is true regarding other flagged errors that should only be errors in strict mode:
Sorry, something went wrong.
This issue was moved to microsoft/TypeScript#6650
egamma
No branches or pull requests
Testing #2218
The duplicate here is not a problem because the code is not in strict mode (also tried running it and node runs it just fine):
But in ES6 this is not an error anymore?
I have also found the following interesting note at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode:
The text was updated successfully, but these errors were encountered: