5 lines
No EOL
160 B
TypeScript
5 lines
No EOL
160 B
TypeScript
export function setTitle(title : undefined | string) {
|
|
document.title = (typeof title === 'undefined' || title === '')
|
|
? 'Vikunja'
|
|
: `${title} | Vikunja`
|
|
} |