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

    Function toCamelCase

    • Returns the camel case representation of the given string

      Parameters

      • Optionaltext: null | string

        the source string to inspect

      Returns undefined | null | string

      the camel case representation of the given string

      David Hsing

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