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

    Function isAlphanumericUpper

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

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns boolean

      whether all the characters in the given text is uppercase alphanumeric

      David Hsing

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