Skip to content

Instantly share code, notes, and snippets.

@joujiahe
Created September 2, 2015 18:38
Show Gist options
  • Save joujiahe/be14e8833b265ede9758 to your computer and use it in GitHub Desktop.
Save joujiahe/be14e8833b265ede9758 to your computer and use it in GitHub Desktop.
Sample of JavaScript regexp route.
function route(url, params) {
return url.replace(/:(\w+)/g, function (match, p) {
return params[p];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment