JS Utils Kit - v0.5.1
    Preparing search index...

    Function startsWithUppercase

    • Checks if a string starts with an uppercase letter.

      Parameters

      • value: string

        The input string to check.

      Returns boolean

      True if the first character is uppercase, false otherwise.

      startsWithUppercase('Hello') // true
      startsWithUppercase('world') // false