mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-13 16:59:03 +00:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
![]() |
const getHost = function () {
|
||
|
const url =
|
||
|
window.location != window.parent.location ? document.referrer : document.location.href;
|
||
|
return url.split('/')[2];
|
||
|
};
|
||
|
|
||
|
export default getHost;
|