Skip to content

Instantly share code, notes, and snippets.

@iceener
Last active July 15, 2020 04:34
Show Gist options
  • Save iceener/8a4198625f327c2f98fadec834bd4903 to your computer and use it in GitHub Desktop.
Save iceener/8a4198625f327c2f98fadec834bd4903 to your computer and use it in GitHub Desktop.
// Redirect to...
const redirect = (url, replace = false) => {
if (replace) {
return window.location.replace(url);
}
window.location.href = url;
};
redirect('https://overment.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment