Skip to content

Instantly share code, notes, and snippets.

@rxluz
Created January 2, 2018 21:04
Show Gist options
  • Save rxluz/0ae15abdc490df8292df3017bf4d73c4 to your computer and use it in GitHub Desktop.
Save rxluz/0ae15abdc490df8292df3017bf4d73c4 to your computer and use it in GitHub Desktop.
const save = (id) => {
//your save code here
return {
goToUserProfile: (name) =>
confirm(`Hi ${name}, you'd like to be redirected to your page`)
? window.location.replace(`https://myurl.example/profile/${id}`)
: false
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment