@dev-tcloud/tcloud-ui 0.0.59 → 0.0.60

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.
@@ -1971,7 +1971,7 @@ class RespectivePipe {
1971
1971
  ];
1972
1972
  }
1973
1973
  transform(v) {
1974
- if (v !== '') {
1974
+ if (v !== undefined && v !== null && v !== '') {
1975
1975
  for (let i = 0; i < (this.map).length; i++) {
1976
1976
  let custom_v = v;
1977
1977
  custom_v = (custom_v).toLowerCase();