Kyungsu Kang

Results 96 comments of Kyungsu Kang

Are you genius?

I know this is a closed issue but I'm calling you here because I think it's dealing with the same topic. First of all, is this an issue that has...

Thank you for your quick response. So what do you think about the above two methods, one getting an error at the time of compilation, and the other getting an...

# If you want to write more longer string literal... ```ts type IsNotEnglish = Uppercase extends Lowercase ? true : false; type MyCapitalize = T extends `${infer F}${infer S}` ?...

I'm a long-time table plus user in RDB environment. I really need this function because I use NoSQL in my new company. Any update?

```ts type IsNotEnglish = Uppercase extends Lowercase ? true : false; type MyCapitalize = T extends `${infer F}${infer S}` ? `${Uppercase}${S}` : T; type CapitalizeWords = T extends `${infer First}${infer...

유니코드가 `U+` 같은 문자와 기호의 혼합으로 이루어져 있기 때문에 문자열을 우선 영어가 아닌 것으로 잘라 배열로 담는 것은 불가능하다. 따라서, 바로 바로 문자열에 넣어주는 방식으로 잘라야 한다. ( 그래야 유니코드는...

solve next problem, raccoon.

I also tried to write a test code for type using packages managed by my company, but it failed. It seems to be an `nx` problem. Unfortunately, I also have...

I'm going to install it with this version and try it again. However, if the problem is reproduced every time the nx version is updated, I can consider removing it...