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
In nodejs async functions we normally have first parameter as error and then other data. JXcore's loadMainFile function looks like this:
loadMainFile
jxcore('app.js').loadMainFile(function(ret, err) {});
Should be:
jxcore('app.js').loadMainFile(function(err, ret) {});
Same is true for the callback of jxcore(...).call function.
jxcore(...).call
The text was updated successfully, but these errors were encountered:
@karaxuna lets check this again and make this part of 0.1.0.0 (also mention on release logs as breaking feature)
Sorry, something went wrong.
Better also update the samples on 0.1.0.0 accordingly
#114
No branches or pull requests
In nodejs async functions we normally have first parameter as error and then other data. JXcore's
loadMainFile
function looks like this:Should be:
Same is true for the callback ofjxcore(...).call
function.The text was updated successfully, but these errors were encountered: