ran npm run tdd
This commit is contained in:
@ -1,2 +1,3 @@
|
||||
module.exports = redirect = (url, asLink = true) =>
|
||||
asLink ? (window.location.href = url) : window.location.replace(url);
|
||||
const redirect = (url, asLink = true) =>
|
||||
asLink ? (window.location.href = url) : window.location.replace(url);
|
||||
module.exports = redirect
|
||||
Reference in New Issue
Block a user