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
I tried running a file as described in the documentation. Originally, my file looked like this:
module.exports = (callback, message) => { ... callback(null, message); };
But when I ran it, it threw the error "module.exports is empty." I had to change my code like this:
function myfunction(callback, message) { ... callback(null, message); } exports { myfunction }
This worked, but now it throws an error saying that callback is not a function. So, I had to make the following change:
function myfunction(callback, message) { ... return message; } exports { myfunction }
This works, but it's completely different from the approach shown in the documentation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried running a file as described in the documentation. Originally, my file looked like this:
But when I ran it, it threw the error "module.exports is empty." I had to change my code like this:
This worked, but now it throws an error saying that callback is not a function. So, I had to make the following change:
This works, but it's completely different from the approach shown in the documentation.
The text was updated successfully, but these errors were encountered: