Skip to content

Instantly share code, notes, and snippets.

@FrameMuse
Last active October 2, 2022 09:53
Show Gist options
  • Save FrameMuse/041c50ea978825709dccdedf9e4f2275 to your computer and use it in GitHub Desktop.
Save FrameMuse/041c50ea978825709dccdedf9e4f2275 to your computer and use it in GitHub Desktop.
Trasnfoms string literal snake case to camel
type SnakeToCamelCase<S extends string> = S extends `${infer Start}_${infer Rest}` ? `${Start}${Capitalize<SnakeToCamelCase<Rest>>}` : S
type SnakeToCamelCase__TEST__ = SnakeToCamelCase<"my_account_profile"> // myAccountProfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment