@arsedizioni/ars-utils 21.2.301 → 21.2.303

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.
@@ -657,7 +657,7 @@ class SystemUtils {
657
657
  */
658
658
  static inflateUUID(value) {
659
659
  const s = value.trim();
660
- if (s.length !== 32 || this.parseUUID(s))
660
+ if (s.length !== 32)
661
661
  return s;
662
662
  return `${s.slice(0, 8)}-${s.slice(8, 12)}-${s.slice(12, 16)}-${s.slice(16, 20)}-${s.slice(20)}`;
663
663
  }