about summary refs log tree commit diff
path: root/src/lib/strings/headings.ts
blob: f9a0624927737fca913a358b9ab42d56fab1a295 (plain) (blame)
1
2
3
4
export function bskyTitle(page: string, unreadCountLabel?: string) {
  const unreadPrefix = unreadCountLabel ? `(${unreadCountLabel}) ` : ''
  return `${unreadPrefix}${page} — Bluesky`
}