modality-kit 0.13.3 → 0.13.5

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.
package/dist/index.js CHANGED
@@ -5925,6 +5925,9 @@ class LruCache {
5925
5925
  }
5926
5926
  this.values.set(key, value);
5927
5927
  }
5928
+ delete(key) {
5929
+ return this.values.delete(key);
5930
+ }
5928
5931
  }
5929
5932
  export {
5930
5933
  withErrorHandling,
@@ -5,4 +5,5 @@ export declare class LruCache<T> {
5
5
  has(key: string): boolean;
6
6
  get(key: string): T | undefined;
7
7
  set(key: string, value: T): void;
8
+ delete(key: string): boolean;
8
9
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.13.3",
2
+ "version": "0.13.5",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",