You are here

protected function MatchBase::isLower in Password Strength 8.2

1 call to MatchBase::isLower()
MatchBase::getCardinality in src/MatchBase.php
Get token's symbol space.

File

src/MatchBase.php, line 114

Class

MatchBase

Namespace

Drupal\password_strength

Code

protected function isLower($ord) {
  return $ord >= 0x61 && $ord <= 0x7a;
}