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
https://github.com/kripken/sql.js/blob/4e91be7da52cdcf26fabb10fcc6f922d3a823cb2/dist/worker.sql-wasm.js#L272
This err is assigned to but never read.
err
https://github.com/kripken/sql.js/blob/4e91be7da52cdcf26fabb10fcc6f922d3a823cb2/dist/worker.sql-wasm.js#L279
This is essentially,
throw new "hello" + "world";
Which gives,
Uncaught TypeError: "hello" is not a constructor
The text was updated successfully, but these errors were encountered:
Good catch, thank you. The error comes from here : https://github.com/kripken/sql.js/blob/4e91be7da52cdcf26fabb10fcc6f922d3a823cb2/src/worker.coffee#L51
You can open a PR !
Sorry, something went wrong.
This is addressed by #288.
No branches or pull requests
https://github.com/kripken/sql.js/blob/4e91be7da52cdcf26fabb10fcc6f922d3a823cb2/dist/worker.sql-wasm.js#L272
This
err
is assigned to but never read.https://github.com/kripken/sql.js/blob/4e91be7da52cdcf26fabb10fcc6f922d3a823cb2/dist/worker.sql-wasm.js#L279
This is essentially,
Which gives,
The text was updated successfully, but these errors were encountered: