monkey-style-guide 2.0.97 → 2.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/monkey-style-guide.umd.js +0 -5
- package/bundles/monkey-style-guide.umd.js.map +1 -1
- package/esm2015/lib/core/utils/utils.js +1 -6
- package/fesm2015/monkey-style-guide.js +0 -5
- package/fesm2015/monkey-style-guide.js.map +1 -1
- package/monkey-style-guide-2.0.98.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.97.tgz +0 -0
|
@@ -702,15 +702,10 @@
|
|
|
702
702
|
return false;
|
|
703
703
|
try {
|
|
704
704
|
var country = phoneUtil.getRegionCodeForCountryCode(internationalNumber);
|
|
705
|
-
console.log('country');
|
|
706
|
-
console.log(country);
|
|
707
705
|
var number = phoneUtil.parse(phone, country);
|
|
708
|
-
console.log('number');
|
|
709
|
-
console.log(number);
|
|
710
706
|
return phoneUtil.isValidNumberForRegion(number, country);
|
|
711
707
|
}
|
|
712
708
|
catch (e) {
|
|
713
|
-
console.log(e);
|
|
714
709
|
//not to do
|
|
715
710
|
}
|
|
716
711
|
return false;
|