Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.53 KB

File metadata and controls

13 lines (8 loc) · 1.53 KB

CamelCase 上級 #template-literal

by Anthony Fu @antfu

挑戦する    English

snake_case 文字列を camelCase に変換する CamelCase <T> を実装します。

例えば

type camelCase1 = CamelCase<'hello_world_with_types'> // expected to be 'helloWorldWithTypes'
type camelCase2 = CamelCase<'HELLO_WORLD_WITH_TYPES'> // expected to be same as previous one

戻る 解答を共有 解答を確認