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
This is a regression from node 8.16.2
const pathname = join(__dirname, "?\0"); // null character will fail validation let output = createWriteStream(pathname) .on("error", (error) => { // do something });
validatePath function throws an exception instead of calling error callback
validatePath
In node 8, the callback was checked
The text was updated successfully, but these errors were encountered:
See #18308, that change was introduced deliberately as a semver-major (i.e., backwards incompatible) change.
Sorry, something went wrong.
No branches or pull requests
This is a regression from node 8.16.2
validatePath
function throws an exception instead of calling error callbackIn node 8, the callback was checked
The text was updated successfully, but these errors were encountered: