This library binds to uncaughtException as follows:
process['on']('uncaughtException', function(ex) {
// suppress ExitStatus exceptions from showing an error
if (!(ex instanceof ExitStatus)) {
throw ex;
}
});
This causes incompatibilities with global uncaughtException handlers as seen in this issue - related to electron.
Can sql.js's uncaughtException handler be changed? What are the implications of removing it?
This library binds to uncaughtException as follows:
This causes incompatibilities with global uncaughtException handlers as seen in this issue - related to electron.
Can sql.js's uncaughtException handler be changed? What are the implications of removing it?