SPB Git forge
28commits 1branches 0releases
7.7 MBsize
maindefault branch
10 days agolast push
Python 66.3% TypeScript 22.7% JavaScript 8.6% HTML 1.4% CSS 0.7%
167 B · 5 lines typescript
Raw Blame History
1/** Tiny class joiner (no dependency). */2export function cn(...parts: Array<string | false | null | undefined>): string {3  return parts.filter(Boolean).join(' ');4}5