@player-ui/async-node-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.
|
@@ -2655,7 +2655,7 @@ var AsyncNodePlugin = function() {
|
|
|
2655
2655
|
value: function set(match, value) {
|
|
2656
2656
|
var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createObjectMatcher(match) : createBasicMatcher(match);
|
|
2657
2657
|
var existingIndex = this.store.findIndex(function(entry) {
|
|
2658
|
-
return entry.matcher(match) && matcher(entry.key);
|
|
2658
|
+
return entry.matcher.count === matcher.count && entry.matcher(match) && matcher(entry.key);
|
|
2659
2659
|
});
|
|
2660
2660
|
if (existingIndex !== -1) {
|
|
2661
2661
|
var _this_logger_debug, _this_logger;
|
|
@@ -8072,8 +8072,8 @@ var AsyncNodePlugin = function() {
|
|
|
8072
8072
|
ref: Symbol("not-started"),
|
|
8073
8073
|
status: "not-started"
|
|
8074
8074
|
};
|
|
8075
|
-
var PLAYER_VERSION = true ? "1.1.0
|
|
8076
|
-
var COMMIT = true ? "
|
|
8075
|
+
var PLAYER_VERSION = true ? "1.1.0" : "unknown";
|
|
8076
|
+
var COMMIT = true ? "c938fcbdebeef8a3e04cd2b84014cfc82bf33591" : "unknown";
|
|
8077
8077
|
var _Player = /*#__PURE__*/ function() {
|
|
8078
8078
|
function _Player2(config) {
|
|
8079
8079
|
var _this = this;
|