@thi.ng/memoize
Advanced tools
Comparing version 3.3.1 to 3.3.2
@@ -1,6 +0,7 @@ | ||
export interface MapLike<A, B> { | ||
has(key: A): boolean; | ||
get(key: A): B | undefined; | ||
set(key: A, val: B): any; | ||
import type { Maybe } from "@thi.ng/api"; | ||
export interface MapLike<K, V> { | ||
has(key: K): boolean; | ||
get(key: K): Maybe<V>; | ||
set(key: K, val: V): any; | ||
} | ||
//# sourceMappingURL=api.d.ts.map |
# Change Log | ||
- **Last updated**: 2024-04-11T12:32:44Z | ||
- **Last updated**: 2024-04-20T14:42:45Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -12,2 +12,8 @@ | ||
### [3.3.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/memoize@3.3.2) (2024-04-20) | ||
#### ♻️ Refactoring | ||
- update type usage ([fcea178](https://github.com/thi-ng/umbrella/commit/fcea178)) | ||
## [3.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/memoize@3.3.0) (2024-04-08) | ||
@@ -14,0 +20,0 @@ |
{ | ||
"name": "@thi.ng/memoize", | ||
"version": "3.3.1", | ||
"version": "3.3.2", | ||
"description": "Function memoization with configurable caching", | ||
@@ -39,3 +39,3 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.10.1" | ||
"@thi.ng/api": "^8.11.0" | ||
}, | ||
@@ -100,3 +100,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n" | ||
"gitHead": "8339d05ecc857e529c7325a9839c0063b89e728d\n" | ||
} |
@@ -81,6 +81,6 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
```html | ||
<script type="module" src="https://cdn.skypack.dev/@thi.ng/memoize"></script> | ||
<script type="module" src="https://esm.run/@thi.ng/memoize"></script> | ||
``` | ||
[Skypack documentation](https://docs.skypack.dev/) | ||
[JSDelivr documentation](https://www.jsdelivr.com/) | ||
@@ -87,0 +87,0 @@ For Node.js REPL: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37758
296
Updated@thi.ng/api@^8.11.0