@thi.ng/trie 1.1.2 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-08-18T14:11:34Z
3
+ - **Last updated**: 2024-09-19T21:09:34Z
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/multi-trie.d.ts CHANGED
@@ -14,7 +14,7 @@ export declare class MultiTrie<K extends ArrayLike<any>, V> {
14
14
  constructor(pairs?: Nullable<Iterable<Pair<K, V>>>, opts?: Partial<MultiTrieOpts<V>> | undefined);
15
15
  [Symbol.iterator](): Generator<(string | V)[], void, unknown>;
16
16
  keys(sep?: string, prefix?: string): Generator<string, void, unknown>;
17
- values(): Generator<V, void, undefined>;
17
+ values(): Generator<V, void, unknown>;
18
18
  suffixes(prefix: K, withPrefix?: boolean, sep?: string): Generator<string, void, unknown>;
19
19
  clear(): void;
20
20
  has(key: K): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/trie",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Trie-based map data structure with prefix search/query support",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,13 +36,13 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.9"
39
+ "@thi.ng/api": "^8.11.10"
40
40
  },
41
41
  "devDependencies": {
42
- "@microsoft/api-extractor": "^7.47.5",
43
- "esbuild": "^0.23.0",
44
- "typedoc": "^0.26.5",
45
- "typescript": "^5.5.4"
42
+ "@microsoft/api-extractor": "^7.47.9",
43
+ "esbuild": "^0.23.1",
44
+ "typedoc": "^0.26.7",
45
+ "typescript": "^5.6.2"
46
46
  },
47
47
  "keywords": [
48
48
  "datastructure",
@@ -86,5 +86,5 @@
86
86
  ],
87
87
  "year": 2020
88
88
  },
89
- "gitHead": "f6e26ea1142525171de5d36b9c3119f2782bb437\n"
89
+ "gitHead": "b52baa3750ddd1256892df966ab7ac9b4806a9ef\n"
90
90
  }