@player-ui/metrics-plugin 0.10.1 → 0.10.2-next.1

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.
@@ -2934,7 +2934,7 @@ var MetricsPlugin = function() {
2934
2934
  return segment;
2935
2935
  }
2936
2936
  var tryNum = Number(segment);
2937
- return isNaN(tryNum) ? segment : tryNum;
2937
+ return isNaN(tryNum) || String(tryNum) !== segment ? segment : tryNum;
2938
2938
  });
2939
2939
  Object.freeze(this.split);
2940
2940
  this.joined = this.split.join(".");