Function isUppercase

  • Returns a boolean value denoting whether the input string is all uppercase

    Example

    Returns true

    isUppercase("FOO");
    

    Example

    Returns false

    isUppercase("Foo");
    

    Parameters

    • str: string

    Returns boolean

Generated using TypeDoc