@player-ui/check-path-plugin 1.1.0-next.6 → 1.1.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.
|
@@ -2586,7 +2586,7 @@ var CheckPathPlugin = function() {
|
|
|
2586
2586
|
value: function set(match, value) {
|
|
2587
2587
|
var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createObjectMatcher(match) : createBasicMatcher(match);
|
|
2588
2588
|
var existingIndex = this.store.findIndex(function(entry) {
|
|
2589
|
-
return entry.matcher(match) && matcher(entry.key);
|
|
2589
|
+
return entry.matcher.count === matcher.count && entry.matcher(match) && matcher(entry.key);
|
|
2590
2590
|
});
|
|
2591
2591
|
if (existingIndex !== -1) {
|
|
2592
2592
|
var _this_logger_debug, _this_logger;
|
|
@@ -7875,8 +7875,8 @@ var CheckPathPlugin = function() {
|
|
|
7875
7875
|
ref: Symbol("not-started"),
|
|
7876
7876
|
status: "not-started"
|
|
7877
7877
|
};
|
|
7878
|
-
var PLAYER_VERSION = true ? "1.1.0
|
|
7879
|
-
var COMMIT = true ? "
|
|
7878
|
+
var PLAYER_VERSION = true ? "1.1.0" : "unknown";
|
|
7879
|
+
var COMMIT = true ? "c938fcbdebeef8a3e04cd2b84014cfc82bf33591" : "unknown";
|
|
7880
7880
|
var _Player = /*#__PURE__*/ function() {
|
|
7881
7881
|
function _Player2(config) {
|
|
7882
7882
|
var _this = this;
|