Skip to content

Instantly share code, notes, and snippets.

@stwilz
Created September 5, 2018 00:04
Show Gist options
  • Save stwilz/3c3170f10b2a04e3e6ae3df4bdfcab37 to your computer and use it in GitHub Desktop.
Save stwilz/3c3170f10b2a04e3e6ae3df4bdfcab37 to your computer and use it in GitHub Desktop.
const createUrl = (path, params = {}) =>
`${Object.keys(params).reduce(
(url, key) => url.replace(`:${key}`, params[key]),
path,
)}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment