Skip to content

Instantly share code, notes, and snippets.

@EnoF
Last active August 29, 2015 14:13
Show Gist options
  • Save EnoF/b2afcd566ddc291d8d40 to your computer and use it in GitHub Desktop.
Save EnoF/b2afcd566ddc291d8d40 to your computer and use it in GitHub Desktop.
function Router(){
this.addRoute = function addRoute(route){
route.url = route.url || 'defaultUrl';
route.name = route.name || 'defaultName';
// Do your stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment