// Content/Cast.ts export function Cast(obj: unknown): T | null { return (obj as T) || null; }