Created
March 27, 2017 21:38
-
-
Save probil/9c6d82066289185ce99ac055a5594934 to your computer and use it in GitHub Desktop.
Is AlphaNumberic (JS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function isAlphaNumeric( value ) { | |
return /^[a-zA-Z0-9]+$/.test(value) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment