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

    Function isAlphabetic

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

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns boolean

      whether all the characters in the given text is alphabetic

      David Hsing

      isAlphabetic('abc');    // true
      isAlphabetic('abc123'); // false
      isAlphabetic('123456'); // false