Skip to content

isLowerCase

isLowerCase(string) → boolean · String

Returns true if all alphabetic characters in the string are lowercase. Non-alphabetic characters are ignored.

  • string (required): string to test
utlx
isLowerCase("hello")                     // true
isLowerCase("Hello")                     // false
isLowerCase("hello123")                  // true (digits ignored)
{
  isLower: isLowerCase($input.code)
}

Released under AGPL-3.0.