@player-ui/player 0.8.0-next.2 → 0.8.0-next.4

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.
@@ -7077,6 +7077,12 @@ var Player = function() {
7077
7077
  value: function clear() {
7078
7078
  this.store = createSortedArray();
7079
7079
  }
7080
+ },
7081
+ {
7082
+ /** Check if the registry is empty*/ key: "isRegistryEmpty",
7083
+ value: function isRegistryEmpty() {
7084
+ return this.store.array.length === 0;
7085
+ }
7080
7086
  }
7081
7087
  ]);
7082
7088
  return Registry;