SheetXL - v0.3.20
    Preparing search index...

    Variable camelToPrettyCaseConst

    camelToPrettyCase: (strInput: string) => string

    Converts a camelCase string to a human-readable format with spaces between words.

    Type declaration

      • (strInput: string): string
      • Parameters

        • strInput: string

          The camelCase string to convert.

        Returns string

        The string converted to pretty case, with spaces between words and the first letter capitalized.

    camelToPrettyCase('camelCaseString'); // Returns "Camel Case String"