Skip to content

Instantly share code, notes, and snippets.

@iceener
Created May 17, 2020 16:06
Show Gist options
  • Save iceener/466e8e7e6dd41674ff8366595afde78b to your computer and use it in GitHub Desktop.
Save iceener/466e8e7e6dd41674ff8366595afde78b to your computer and use it in GitHub Desktop.
// Redirect to...
const redirect = (url, replace = false) => {
if (asLink) {
window.location.href = url;
} else {
window.location.replace(url);
}
};
redirect('https://overment.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment