onedrive / src /utils /getBaseUrl.ts
ImPekaaboo
first commit
5db682b
raw
history blame contribute delete
No virus
214 Bytes
/**
* Extract the current web page's base url
* @returns base url of the page
*/
export function getBaseUrl(): string {
if (typeof window !== 'undefined') {
return window.location.origin
}
return ''
}