@thi.ng/bidir-index 1.5.7 → 1.5.10
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/README.md +5 -3
- package/bidir-index.d.ts +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
|
|
11
|
-
> of
|
|
12
|
-
>
|
|
10
|
+
|
|
11
|
+
> This is one of 215 standalone projects. LLM-free, human-made and
|
|
12
|
+
> cared for software, maintained as part of the
|
|
13
|
+
> [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem and
|
|
14
|
+
> anti-framework.
|
|
13
15
|
>
|
|
14
16
|
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
17
|
> me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
|
package/bidir-index.d.ts
CHANGED
|
@@ -150,7 +150,7 @@ export declare class BidirIndex<T> implements IClear, ICopy<BidirIndex<T>>, IEmp
|
|
|
150
150
|
* @param currKey
|
|
151
151
|
* @param newKey
|
|
152
152
|
*/
|
|
153
|
-
renameKey(currKey: T, newKey: T): "
|
|
153
|
+
renameKey(currKey: T, newKey: T): "missing" | "conflict" | "ok";
|
|
154
154
|
/**
|
|
155
155
|
* Returns a compact JSON serializable version of the index. Use
|
|
156
156
|
* {@link bidirIndexFromJSON} to instantiate an index from such a JSON
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/bidir-index",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10",
|
|
4
4
|
"description": "Bi-directional index mapping arbitrary keys to numeric IDs & vice versa",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
44
|
-
"@thi.ng/checks": "^3.9.
|
|
43
|
+
"@thi.ng/api": "^8.12.24",
|
|
44
|
+
"@thi.ng/checks": "^3.9.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"esbuild": "^0.28.0",
|
|
48
|
-
"typedoc": "^0.28.
|
|
49
|
-
"typescript": "^
|
|
48
|
+
"typedoc": "^0.28.19",
|
|
49
|
+
"typescript": "^6.0.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"bidirectional",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
],
|
|
96
96
|
"year": 2022
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "b302822c51b2ab255f8f27f8dd010433d95f29df"
|
|
99
99
|
}
|