modality-kit 0.14.2 → 0.14.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.
package/dist/index.js CHANGED
@@ -5943,6 +5943,9 @@ class LruCache {
5943
5943
  values() {
5944
5944
  return this._values.values();
5945
5945
  }
5946
+ keys() {
5947
+ return this._values.keys();
5948
+ }
5946
5949
  }
5947
5950
  export {
5948
5951
  withErrorHandling,
@@ -9,4 +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
13
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.14.2",
2
+ "version": "0.14.3",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",