Library API
    Preparing search index...

    Function toCamelCase

    • Converts a string to camelCase format. Handles spaces, punctuation, and mixed casing.

      Type Parameters

      • T extends string

      Parameters

      • sentence: T

        The string to convert

      Returns T

      The camel-cased string

      toCamelCase('Hello World'); // 'helloWorld'