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.
@@ -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;