mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-09-01 02:38:56 +00:00
42ac955052
Add the Companies app, resilient call handling, custom app registry, vendor compatibility, storage policies, frontend bridge, tests, documentation, config, locale, and SQL migrations.
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
export function isTrustedRootMessageSource(
|
|
source: MessageEventSource | null,
|
|
rootWindow: Window,
|
|
): boolean {
|
|
return source === null || source === rootWindow
|
|
}
|