SPB Git forge

spb/ai-atlas

Public
41commits 1branches 0releases
4.6 MBsize
maindefault branch
12 days agolast push
HTML 77.2% TypeScript 10.5% Python 9.6% JavaScript 2.5%
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