🏠FunctionskebabToPascalOn this pagekebabToPascalReturns a string with kebab-case words converted to PascalCase.Usageimport { kebabToPascal } from 'string-factory';kebabToPascal(string);CopyProp typesproptyperequireddefaultstringStringyesnullExampleskebabToPascal("some-kebab-case-var") // "SomeKebabCaseVar"Copy