🏠FunctionssnakeToPascal()On this pagesnakeToPascal()Returns a copy of the snake_case string converted to PascalCase.Usageimport { snakeToPascal } from 'string-factory';snakeToPascal(string);CopyProp typesproptyperequireddefaultstringStringyesnullExamplessnakeToPascal("some_variable_name") // "SomeVariableName"Copy