@player-ui/player 0.14.1-next.6 → 0.14.1

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.
@@ -1466,7 +1466,7 @@ var Player = function() {
1466
1466
  isBlockingNavigation: false
1467
1467
  };
1468
1468
  };
1469
- var createMatcher = function createMatcher(partialObj) {
1469
+ var createObjectMatcher = function createObjectMatcher(partialObj) {
1470
1470
  var pairs = traverseObj(partialObj);
1471
1471
  var matchFunction = function(searchObj) {
1472
1472
  var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
@@ -7410,7 +7410,7 @@ var Player = function() {
7410
7410
  {
7411
7411
  /** Add match -> value mapping to the registry */ key: "set",
7412
7412
  value: function set(match, value) {
7413
- var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createMatcher(match) : createBasicMatcher(match);
7413
+ var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createObjectMatcher(match) : createBasicMatcher(match);
7414
7414
  this.store.insert({
7415
7415
  key: match,
7416
7416
  value: value,