Skip to content

Instantly share code, notes, and snippets.

@wmantly
Created April 28, 2020 21:09
Show Gist options
  • Save wmantly/492bb4dcb1039446bf3df0484030c9f8 to your computer and use it in GitHub Desktop.
Save wmantly/492bb4dcb1039446bf3df0484030c9f8 to your computer and use it in GitHub Desktop.
func parse_path(props, params, path){
for(let key in props)
if(params[key]){
path.replace(`{${key}}`, params[key]);
}else{
throw "some error";
}
return path;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment