@player-ui/async-node-plugin 0.8.0-next.1 → 0.8.0-next.3

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.
@@ -2622,6 +2622,12 @@ var AsyncNodePlugin = function() {
2622
2622
  value: function clear() {
2623
2623
  this.store = createSortedArray();
2624
2624
  }
2625
+ },
2626
+ {
2627
+ /** Check if the registry is empty*/ key: "isRegistryEmpty",
2628
+ value: function isRegistryEmpty() {
2629
+ return this.store.array.length === 0;
2630
+ }
2625
2631
  }
2626
2632
  ]);
2627
2633
  return Registry;