We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import { readdir } from "https://deno.land/std@0.119.0/node/fs.ts"; readdir("xyz", (err) => { console.log("error"); });
This script should print "error" and exit normally, but it errors with uncaught error.
The text was updated successfully, but these errors were encountered:
The problematic code is here: https://github.com/denoland/deno_std/blob/6bbfc8f48cfdcdcf007773d7b03c8b3a0543c658/node/_fs/_fs_watch.ts#L5-L38
Both of these helper functions only use handlers if promise resolves successfuly, neither can handle errors raised from the iterators.
Sorry, something went wrong.
Thanks for the input. I'll work on this
Successfully merging a pull request may close this issue.
This script should print "error" and exit normally, but it errors with uncaught error.
The text was updated successfully, but these errors were encountered: