Skip to content

Instantly share code, notes, and snippets.

@gu3st
Created November 28, 2012 01:04
Show Gist options
  • Save gu3st/4158323 to your computer and use it in GitHub Desktop.
Save gu3st/4158323 to your computer and use it in GitHub Desktop.
Javascript Insanity
var Awesome = (function(){
var public = {
test: test,
test2: test2,
clear: clear
};
function test(){
}
function test2(){
}
function clear(){
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment