mirror of
https://github.com/tanweai/pua.git
synced 2026-09-21 12:43:10 +08:00
- 4-level escalating pressure system (L1-L4) using Chinese tech corp PUA rhetoric - Systematic debugging methodology (三板斧 + 7-item checklist) - Benchmarked across 6 real bug scenarios: +27% fixes, +65% verifications - Landing page at https://pua-skill.pages.dev - Slash command /pua for manual trigger
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|