(...values: Array<string | undefined>)
| 17 | let cachedDisplayPlatform: DisplayPlatform | null = null |
| 18 | |
| 19 | function mergeClassNames(...values: Array<string | undefined>): string | undefined { |
| 20 | const filtered = values.filter(Boolean) |
| 21 | return filtered.length > 0 ? filtered.join(' ') : undefined |
| 22 | } |
| 23 | |
| 24 | function resolveDisplayPlatform(): DisplayPlatform { |
| 25 | if (cachedDisplayPlatform) { |