export function isWildcardAccept(accept?: string): boolean { const normalized = accept?.trim() return normalized === '*' || normalized === '*/*' }