@player-ui/async-node-plugin 0.10.1 → 0.10.2-next.0

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.
@@ -2902,7 +2902,7 @@ var AsyncNodePlugin = function() {
2902
2902
  return segment;
2903
2903
  }
2904
2904
  var tryNum = Number(segment);
2905
- return isNaN(tryNum) ? segment : tryNum;
2905
+ return isNaN(tryNum) || String(tryNum) !== segment ? segment : tryNum;
2906
2906
  });
2907
2907
  Object.freeze(this.split);
2908
2908
  this.joined = this.split.join(".");