Skip to content

Commit

Permalink
Merge pull request #50 from jigintern/fix/deno-kv
Browse files Browse the repository at this point in the history
Fix: Deno KV/list取得時の処理の誤りを修正
  • Loading branch information
Futaba-Kosuke authored Aug 16, 2024
2 parents 6b683a8 + ebd1b83 commit 8d3629f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deno-kv/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ console.log(getManyResult);

// list: 条件指定の取得
const listResult = await kv.list({ prefix: ["hoge"] })
console.log(listResult);
for await (const item of listResult) {
console.log(item);
}
```

<details>
Expand Down

0 comments on commit 8d3629f

Please sign in to comment.