We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SnakeCase
It support for SnakeCase that converts string to snake case. For example as below.
type T1 = SnakeCase<"ts-typekit"> // ts_typekit type T2 = SnakeCase<"tsTypekit"> // ts_typekit
To satisfy this, it is necessary to first break the string into words. This will be implemented with GetWords in '_internal'.
GetWords
It will be made into an arrray of words. For example as below.
type Words1 = GetWords<"ts-typekit"> // ["ts", "typekit"] type Words2 = GetWords<"snake_case"> // ["snake", "case"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It support for
SnakeCase
that converts string to snake case. For example as below.To satisfy this, it is necessary to first break the string into words. This will be implemented with
GetWords
in '_internal'.It will be made into an arrray of words. For example as below.
The text was updated successfully, but these errors were encountered: