Skip to content

Instantly share code, notes, and snippets.

@probil
Created March 27, 2017 21:38
Show Gist options
  • Save probil/9c6d82066289185ce99ac055a5594934 to your computer and use it in GitHub Desktop.
Save probil/9c6d82066289185ce99ac055a5594934 to your computer and use it in GitHub Desktop.
Is AlphaNumberic (JS)
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