Function strIsUpperCase

  • Checks if the given string is in upper case.

    Parameters

    • input: string

      The string to be checked.

    Returns boolean

    Example

    strIsUpperCase('HELLO');;
    //=> true
    strIsUpperCase('HEllo');;
    //=> false

Generated using TypeDoc