monkey-style-guide 2.0.35 → 2.0.37

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.
@@ -2276,13 +2276,11 @@
2276
2276
  return this.handledValue;
2277
2277
  },
2278
2278
  set: function (value) {
2279
- if (value) {
2280
- this.handledValue = value;
2281
- this._formatedValue = this.formatValue(value);
2282
- this.cdr.detectChanges();
2283
- this.onModelChange(this.handledValue);
2284
- this.onModelTouched(this.handledValue);
2285
- }
2279
+ this.handledValue = value;
2280
+ this._formatedValue = this.formatValue(value);
2281
+ this.cdr.detectChanges();
2282
+ this.onModelChange(this.handledValue);
2283
+ this.onModelTouched(this.handledValue);
2286
2284
  },
2287
2285
  enumerable: false,
2288
2286
  configurable: true