(font: string | undefined, base: string)
| 74 | } |
| 75 | |
| 76 | function stack(font: string | undefined, base: string) { |
| 77 | const value = font?.trim() ?? "" |
| 78 | if (!value) return base |
| 79 | return `${family(value)}, ${base}` |
| 80 | } |
| 81 | |
| 82 | export function monoInput(font: string | undefined) { |
| 83 | return input(font) |
no test coverage detected