Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kv#close() does not return a Promise #19049

Closed
cowboyd opened this issue May 8, 2023 · 0 comments · Fixed by #19076
Closed

Kv#close() does not return a Promise #19049

cowboyd opened this issue May 8, 2023 · 0 comments · Fixed by #19076
Assignees
Labels
ext/kv Related to "Deno.openKv()" API

Comments

@cowboyd
Copy link

cowboyd commented May 8, 2023

According to the API docs, the type of Deno.Kv#close() is () => Promise<void>, however, it actually returns undefined.

The following snippet demonstrates this:

let kv = await Deno.openKv();

console.log(kv.close()); //=> undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ext/kv Related to "Deno.openKv()" API
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants