mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-31 10:18:57 +00:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
export function isTrustedRootMessageSource(
|
|
source: MessageEventSource | null,
|
|
rootWindow: Window,
|
|
): boolean {
|
|
return (
|
|
source === null ||
|
|
source === rootWindow ||
|
|
source === rootWindow.parent ||
|
|
source === rootWindow.top
|
|
)
|
|
}
|