@unikue/ts-lang-utils
    Preparing search index...

    Function toCamelCase

    • Returns the camel case representation of the given string

      Parameters

      • Optionaltext: string | null

        The source string to inspect

      Returns string | null | undefined

      the camel case representation of the given string

      David Hsing

      toCamelCase('FOO BAR');    // 'fooBar'
      toCamelCase('--foo-bar--'); // 'fooBar'
      toCamelCase('__FOO_BAR__'); // 'fooBar'