monkey-style-guide 2.0.99 → 2.0.100

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.
@@ -3789,7 +3789,9 @@
3789
3789
  };
3790
3790
  MonkeyInputPhoneComponent.prototype.getValue = function () {
3791
3791
  var _d = this, _internationalNumber = _d._internationalNumber, _handledValue = _d._handledValue;
3792
- return "+" + _internationalNumber + _handledValue;
3792
+ if (_handledValue)
3793
+ return "+" + _internationalNumber + _handledValue;
3794
+ return '';
3793
3795
  };
3794
3796
  MonkeyInputPhoneComponent.prototype.ngOnInit = function () {
3795
3797
  this._countryCodes = MonkeyUtils.getPhoneRegions();