modality-kit 0.14.3 → 0.14.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.
package/dist/index.js CHANGED
@@ -5944,7 +5944,7 @@ class LruCache {
5944
5944
  return this._values.values();
5945
5945
  }
5946
5946
  keys() {
5947
- return this._values.keys();
5947
+ return [...this._values.keys()];
5948
5948
  }
5949
5949
  }
5950
5950
  export {
@@ -9,5 +9,5 @@ export declare class LruCache<T> {
9
9
  clear(): void;
10
10
  size(): number;
11
11
  values(): IterableIterator<T>;
12
- keys(): MapIterator<string>;
12
+ keys(): string[];
13
13
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.14.3",
2
+ "version": "0.14.4",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",