mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
const ALLOWED_PROTOCOLS = ['https:', 'http:']
|
|
|
|
export const openURL = (content: string) => {
|
|
const url = new URL(content, document.location.href)
|
|
|
|
if (!ALLOWED_PROTOCOLS.includes(url.protocol)) {
|
|
throw new Error(`Not opening URL with protocol ${url.protocol}`)
|
|
}
|
|
|
|
window.open(url, '_blank')
|
|
}
|