Commit 87d7d09 1 parent 61f207f commit 87d7d09 Copy full SHA for 87d7d09
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 75
75
* ["a", "d", "f"]
76
76
* ```
77
77
*
78
- * And you would get the following results when using `unique ()`:
78
+ * And you would get the following results when using `tree ()`:
79
79
*
80
80
* ```ts
81
81
* import { unique } from "jsr:@kitsonk/kv-toolbox/keys";
82
82
*
83
83
* const kv = await Deno.openKv();
84
- * console.log(await unique (kv, ["a"]));
84
+ * console.log(await tree (kv, ["a"]));
85
85
* // {
86
86
* // prefix: ["a"],
87
87
* // children: [
@@ -430,13 +430,13 @@ export interface KeyTree {
430
430
* ["a", "d", "f"]
431
431
* ```
432
432
*
433
- * And you would get the following results when using `unique ()`:
433
+ * And you would get the following results when using `tree ()`:
434
434
*
435
435
* ```ts
436
436
* import { unique } from "jsr:@kitsonk/kv-toolbox/keys";
437
437
*
438
438
* const kv = await Deno.openKv();
439
- * console.log(await unique (kv, ["a"]));
439
+ * console.log(await tree (kv, ["a"]));
440
440
* // {
441
441
* // prefix: ["a"],
442
442
* // children: [
You can’t perform that action at this time.
0 commit comments