to_camelcase
faststream.asyncapi.utils.to_camelcase #
Converts a list of names to camel case.
PARAMETER | DESCRIPTION |
---|---|
*names | Variable length list of names to be converted to camel case. TYPE: |
RETURNS | DESCRIPTION |
---|---|
str | The camel case representation of the names. |
Example
to_camelcase("hello_world") "HelloWorld"