Skip to content

Instantly share code, notes, and snippets.

@xphong
Created July 15, 2015 14:26
Show Gist options
  • Save xphong/04275b57203b668e1f00 to your computer and use it in GitHub Desktop.
Save xphong/04275b57203b668e1f00 to your computer and use it in GitHub Desktop.
Revealing module
var revealingModuleName = (function() {
'use strict';
function methodName() {
}
return {
methodName:methodName
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment