Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/memoize

Package Overview
Dependencies
Maintainers
1
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/memoize - npm Package Compare versions

Comparing version 3.3.1 to 3.3.2

9

api.d.ts

@@ -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:

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc