mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04:00
8 lines
254 B
JavaScript
8 lines
254 B
JavaScript
// eslint-disable-next-line import/prefer-default-export
|
|
export function absoluteUrl(url) {
|
|
const urlObj = new URL(url, window.location);
|
|
urlObj.protocol = window.location.protocol;
|
|
urlObj.host = window.location.host;
|
|
return urlObj.toString();
|
|
}
|