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
The following code is altered so that undefined is returned, rather than 99:
function shouldReturn99(event) { return 99; }
AMDClean adds a semicolon after the return, as follows:
;(function() { function shouldReturn99(event) { return; 99; } }());
The text was updated successfully, but these errors were encountered:
@aleventhal nope, it should return undefined.
undefined
Sorry, something went wrong.
According to my browser, @finom is right
Should be closed. See also: http://ecma-international.org/ecma-262/5.1/#sec-7.9
No branches or pull requests
The following code is altered so that undefined is returned, rather than 99:
AMDClean adds a semicolon after the return, as follows:
The text was updated successfully, but these errors were encountered: