Skip to content

Instantly share code, notes, and snippets.

@spoeken
Created December 21, 2016 13:51
Show Gist options
  • Save spoeken/4dac6c60f331fa980f79dd7d807e674e to your computer and use it in GitHub Desktop.
Save spoeken/4dac6c60f331fa980f79dd7d807e674e to your computer and use it in GitHub Desktop.
Is this a phone number?
const isNumeric = num => {
return !isNaN(num)
}
const isPhone = function(number){
if(number.length >= 8 && isNumeric(number) ){
return true
}
return false
}
export default isPhone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment