We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
stuff = !function thing arg wow
var stuff; stuff = (function(){ function thing(arg){ wow; } }());
compare to:
stuff = function thing arg wow
var stuff; stuff = (function(){ function thing(arg){ return wow; } return thing; }());