🏠FunctionspascalCase()On this pagepascalCase()Converts a sentence case string to a PascalCase string.Usageimport { pascalCase } from 'string-factory';pascalCase(string);CopyProp typesproptyperequireddefaultstringStringyesnullExamplespascalCase('hello world') // "HelloWorld"Copy