Skip to content

Instantly share code, notes, and snippets.

@jesusr
Created January 6, 2015 18:32
Show Gist options
  • Save jesusr/df54614d384698c4622d to your computer and use it in GitHub Desktop.
Save jesusr/df54614d384698c4622d to your computer and use it in GitHub Desktop.
Angular.js module declaration with exception alert catched
/**
* Module
*/
var module;
try {
module = angular.module(moduleName);
} catch(err) {
// named module does not exist, so create one
module = angular.module(moduleName, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment