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

    Function isAlphanumeric

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

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns boolean

      whether all the characters in the given text is alphanumeric

      David Hsing

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