WisestCoder
Results
12
comments of
WisestCoder
```ts type IsGap = Uppercase extends Lowercase ? true : false type CamelCase = S extends Lowercase ? S extends `${infer F}_${infer RF}${infer R}` ? RF extends '_' ? `${F}_${CamelCase}`...
Is this something people can think of ?