@player-ui/markdown-plugin 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.
@@ -6877,6 +6877,12 @@ var MarkdownPlugin = function() {
6877
6877
  value: function clear() {
6878
6878
  this.store = createSortedArray();
6879
6879
  }
6880
+ },
6881
+ {
6882
+ /** Check if the registry is empty*/ key: "isRegistryEmpty",
6883
+ value: function isRegistryEmpty() {
6884
+ return this.store.array.length === 0;
6885
+ }
6880
6886
  }
6881
6887
  ]);
6882
6888
  return Registry;