Skip to content

Instantly share code, notes, and snippets.

@xphong
Created July 15, 2015 14:24
Show Gist options
  • Save xphong/18480ffe238ba7e60476 to your computer and use it in GitHub Desktop.
Save xphong/18480ffe238ba7e60476 to your computer and use it in GitHub Desktop.
Simple module pattern
var moduleName = (function($, window, document) {
'use strict';
var moduleName = {
init: {
}
};
return moduleName;
}(jQuery, window, document));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment