We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arguments
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
So that this: $ coco -e 'console.log arguments is (switch case 1 then arguments)' false results in true.
true
console.log(arguments === (function(){ switch (false) { case !1: return arguments; } }.apply(this, arguments)));
console.log(arguments === (function(_args){ switch (false) { case !1: return _args; } }(arguments)));
The text was updated successfully, but these errors were encountered:
closed by 7dd7f98; statement wrappers now precisely emulate arguments
Sorry, something went wrong.
Merge pull request satyr#4 from josher19/patch-2
ffbae44
No branches or pull requests
So that this:
$ coco -e 'console.log arguments is (switch case 1 then arguments)'
false
results in
true
.Before
After
The text was updated successfully, but these errors were encountered: