Created
July 11, 2011 17:44
-
-
Save gpbmike/1076361 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// INPUT | |
(function() { | |
function this_is_my_great_function(msg) { | |
alert(msg); | |
} | |
this_is_my_great_function('yay'); | |
}); | |
// YUI COMPRESSED OUTPUT | |
(function(){function a(b){alert(b)}a("yay")}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment