Function isLowercase

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

    Example

    Returns true

    isLowercase("foo");
    

    Example

    Returns false

    isLowercase("Foo");
    

    Parameters

    • str: string

    Returns boolean

Generated using TypeDoc