File size: 239 Bytes
8766bc5
 
 
 
 
 
1
2
3
4
5
6
7
export function is_self_origin(url: URL): boolean {
	return (
		url.origin === window.location.origin ||
		url.origin === "http://localhost:7860" // Ref: https://github.com/gradio-app/gradio/blob/v3.32.0/js/app/src/Index.svelte#L194
	);
}