@player-ui/player 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.
@@ -386,7 +386,7 @@ var BindingInstance = class _BindingInstance {
386
386
  return segment;
387
387
  }
388
388
  const tryNum = Number(segment);
389
- return isNaN(tryNum) ? segment : tryNum;
389
+ return isNaN(tryNum) || String(tryNum) !== segment ? segment : tryNum;
390
390
  });
391
391
  Object.freeze(this.split);
392
392
  this.joined = this.split.join(".");