@thi.ng/memoize 3.1.63 → 3.1.65

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-07T20:40:47Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/do-once.d.ts CHANGED
@@ -7,5 +7,5 @@ import type { MapLike } from "./api.js";
7
7
  * @param fn -
8
8
  * @param cache -
9
9
  */
10
- export declare const doOnce: <T>(fn: Fn<T, void>, cache?: MapLike<T, boolean> | undefined) => (x: T) => void;
10
+ export declare const doOnce: <T>(fn: Fn<T, void>, cache?: MapLike<T, boolean>) => (x: T) => void;
11
11
  //# sourceMappingURL=do-once.d.ts.map
package/memoize1.d.ts CHANGED
@@ -10,5 +10,5 @@ import type { MapLike } from "./api.js";
10
10
  * @param fn -
11
11
  * @param cache -
12
12
  */
13
- export declare const memoize1: <A, B>(fn: Fn<A, B>, cache?: MapLike<A, B> | undefined) => (x: A) => B;
13
+ export declare const memoize1: <A, B>(fn: Fn<A, B>, cache?: MapLike<A, B>) => (x: A) => B;
14
14
  //# sourceMappingURL=memoize1.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/memoize",
3
- "version": "3.1.63",
3
+ "version": "3.1.65",
4
4
  "description": "Function memoization with configurable caching",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,14 +36,14 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.9.28"
39
+ "@thi.ng/api": "^8.9.30"
40
40
  },
41
41
  "devDependencies": {
42
- "@microsoft/api-extractor": "^7.40.1",
43
- "esbuild": "^0.20.0",
42
+ "@microsoft/api-extractor": "^7.42.3",
43
+ "esbuild": "^0.20.1",
44
44
  "rimraf": "^5.0.5",
45
- "typedoc": "^0.25.7",
46
- "typescript": "^5.3.3"
45
+ "typedoc": "^0.25.12",
46
+ "typescript": "^5.4.2"
47
47
  },
48
48
  "keywords": [
49
49
  "cache",
@@ -90,5 +90,5 @@
90
90
  ],
91
91
  "year": 2018
92
92
  },
93
- "gitHead": "a421058a65ba76608d94129ac29451bfedaf201c\n"
93
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
94
94
  }