SOURCE / PINNED RELEASE
Made of little things.
Crossfire
- Release
- 9614abe48623…
- Author-recorded commit
- 6f6c8299e2fb…
- License
- LICENSE
- Author’s source reference
- nostr://npub1n8ga89w8h6tvwamxusfyzexw8gjy84yxu9rxgnmk955cxtml4ujswzxydd/wss%3A%2F%2Fgit.napplet.soy%2F/n-347ab685aef
Archive hash verified: 34d5295141b419db…. The source-to-build association is the author’s claim; it has not been independently rebuilt.
type NappletWindow = Window & {
napplet?: Record<string, unknown>;
};
/** Return whether the runtime injected a domain for this load. */
export function hasDomain(
napplet: Record<string, unknown> | undefined,
domain: string,
): boolean {
return Boolean(napplet?.[domain]);
}
/** Check a domain on the runtime-owned global without exposing it for calls. */
export function runtimeHasDomain(domain: string): boolean {
return hasDomain((window as NappletWindow).napplet, domain);
}