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

    Parameters

    • Optionaltext: string

      the text to check

    Returns boolean

    whether all the characters in the given text is alphanumeric

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