textConvert
    Preparing search index...

    Function pascalCase

    • Convert a string from any convention to Pascal Case convention.

      Parameters

      • text: string

        A string to be converted to Camel Case.

      Returns string

      A string in PascalCase convention.

      pascalCase('hello world'); // 'HelloWorld'