@unikue/ts-lang-utils
    Preparing search index...

    Function isAlphanumericLower

    • Returns whether all the characters in the given text is lowercase alphanumeric

      Parameters

      • Optionaltext: null | string

        The text to check

      Returns boolean

      whether all the characters in the given text is lowercase alphanumeric

      David Hsing

      isAlphanumericLower(undefined);    // false
      isAlphanumericLower('ABC123'); // false
      isAlphanumericLower('abc123'); // true
      isAlphanumericLower('--$$##'); // false