759a42e589
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
// Harness sample unit — to be wired into title rendering by M3c (branding slice).
|
|
export function brandTitle(name) {
|
|
const trimmed = (name || '').trim()
|
|
return trimmed || 'RFC'
|
|
}
|