@player-ui/markdown-plugin 0.10.1 → 0.10.2--canary.572.19223

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.
@@ -7157,7 +7157,7 @@ var MarkdownPlugin = function() {
7157
7157
  return segment;
7158
7158
  }
7159
7159
  var tryNum = Number(segment);
7160
- return isNaN(tryNum) ? segment : tryNum;
7160
+ return isNaN(tryNum) || String(tryNum) !== segment ? segment : tryNum;
7161
7161
  });
7162
7162
  Object.freeze(this.split);
7163
7163
  this.joined = this.split.join(".");