@player-ui/stage-revert-data-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.
|
@@ -2838,7 +2838,7 @@ var StageRevertDataPlugin = function() {
|
|
|
2838
2838
|
return segment;
|
|
2839
2839
|
}
|
|
2840
2840
|
var tryNum = Number(segment);
|
|
2841
|
-
return isNaN(tryNum) ? segment : tryNum;
|
|
2841
|
+
return isNaN(tryNum) || String(tryNum) !== segment ? segment : tryNum;
|
|
2842
2842
|
});
|
|
2843
2843
|
Object.freeze(this.split);
|
|
2844
2844
|
this.joined = this.split.join(".");
|