Type Challenges Judge

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'>>, ]