@codetectonics/mantle 2.0.9 → 2.0.10
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.
|
@@ -591,7 +591,7 @@ class DynamicPipe {
|
|
|
591
591
|
transformObscured(value) {
|
|
592
592
|
if (!value)
|
|
593
593
|
return '';
|
|
594
|
-
return value.replace(/./g, '*');
|
|
594
|
+
return String(value).replace(/./g, '*');
|
|
595
595
|
}
|
|
596
596
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: DynamicPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
597
597
|
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.25", ngImport: i0, type: DynamicPipe, isStandalone: false, name: "dynamicPipe" }); }
|