Documents for @litert/utils-string
    Preparing search index...

    Function isLowerCamelCase

    • Check if a string is in Lower Camel Case format (e.g. lowerCamelCase, a1b2c3).

      Parameters

      • text: string

        The string to check.

      Returns boolean

      true if the string is in Lower Camel Case format, otherwise false.

      `isLowerCamelCase('lowerCamelCase') -> true`
      
      `isLowerCamelCase('UpperCamelCase') -> false`
      
      `isLowerCamelCase('a1b2c3') -> true`
      
      `isLowerCamelCase('1aB2') -> false`
      
      `isLowerCamelCase('') -> false`