@player-ui/common-expressions-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.
@@ -2672,6 +2672,12 @@ var CommonExpressionsPlugin = function() {
2672
2672
  value: function clear() {
2673
2673
  this.store = createSortedArray();
2674
2674
  }
2675
+ },
2676
+ {
2677
+ /** Check if the registry is empty*/ key: "isRegistryEmpty",
2678
+ value: function isRegistryEmpty() {
2679
+ return this.store.array.length === 0;
2680
+ }
2675
2681
  }
2676
2682
  ]);
2677
2683
  return Registry;