DocumentationSapphire Utilities@sapphire/utilitiesFunctionssnakeToCamelCaseOn this pageFunction: snakeToCamelCase() snakeToCamelCase(str: string): string Transforms text from snAkE_cASE to camelCase. Parameters ParameterTypeDescriptionstrstringText to transform Returns string the input st_R as stR Example snakeToCamelCase('hello_world') // 'helloWorld' Defined in snakeToCamelCase.ts:11