String to Union
提出詳細
type StringToUnion<T extends string, Acc extends string = never> = T extends `${infer U}${infer V}` ? StringToUnion<V,Acc | U> : Acc
提出日時 | 2023-09-14 04:53:13 |
---|---|
問題 | String to Union |
ユーザー | sankantsu |
ステータス | Accepted |
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<StringToUnion<''>, never>>, Expect<Equal<StringToUnion<'t'>, 't'>>, Expect<Equal<StringToUnion<'hello'>, 'h' | 'e' | 'l' | 'l' | 'o'>>, Expect<Equal<StringToUnion<'coronavirus'>, 'c' | 'o' | 'r' | 'o' | 'n' | 'a' | 'v' | 'i' | 'r' | 'u' | 's'>>, ]