is-phone-number
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "is-phone-number", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "check if string is a phone number", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -25,15 +25,15 @@ is-phone-number | ||
isUrl('(123) 456-7890'); | ||
isPhoneNumber('(123) 456-7890'); | ||
//=> true | ||
isUrl('123 456 7890'); | ||
isPhoneNumber('123 456 7890'); | ||
//=> true | ||
isUrl('123.456.7890'); | ||
isPhoneNumber('123.456.7890'); | ||
//=> true | ||
isUrl('+91 (123) 456-78900'); | ||
isPhoneNumber('+91 (123) 456-78900'); | ||
//=> true | ||
isUrl('5222-222-333'); | ||
isPhoneNumber('5222-222-333'); | ||
//=> false | ||
@@ -40,0 +40,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3042