onedrive/utils/getBaseUrl.ts
2021-12-17 21:21:25 +08:00

11 lines
214 B
TypeScript

/**
* 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 ''
}