Skip to content

Instantly share code, notes, and snippets.

@smarigowda
Last active August 29, 2015 14:10
Show Gist options
  • Save smarigowda/05d12c936858d5154b21 to your computer and use it in GitHub Desktop.
Save smarigowda/05d12c936858d5154b21 to your computer and use it in GitHub Desktop.
JavaScript
//nice way to populate object with route and hanldler
route = {
routes: {},
for: function(path, handler) {
this.routes[path] = handler;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment