modality-kit 0.13.4 → 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
@@ -5926,7 +5926,7 @@ class LruCache {
5926
5926
  this.values.set(key, value);
5927
5927
  }
5928
5928
  delete(key) {
5929
- this.values.delete(key);
5929
+ return this.values.delete(key);
5930
5930
  }
5931
5931
  }
5932
5932
  export {
@@ -5,5 +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): void;
8
+ delete(key: string): boolean;
9
9
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.13.4",
2
+ "version": "0.13.5",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",