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

    Function isAlphabeticUpper

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

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns boolean

      whether all the characters in the given text is uppercase alphabetic

      David Hsing

      isAlphabeticUpper('ABC');    // true
      isAlphabeticUpper('abc'); // false
      isAlphabeticUpper('abc123'); // false
      isAlphabeticUpper('123456'); // false