Jason 4dbe131890
🦈🏠🐜 Initial Commit 🐜🦈🏠
2022-02-14 16:45:28 -05:00

7 lines
192 B
JavaScript

function homepage() {
let proto = location.protocol;
let port = location.port;
let currentSite = window.location.hostname;
window.location = proto + '//' + currentSite + ':' + port;
}