Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

websql

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

websql - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

11

lib/WebSQLDatabase.js

@@ -11,3 +11,3 @@ 'use strict';

function onTransactionComplete(err) {
self._db.run('END TRANSACTION;', [], function () {
function done() {
self._running = false;

@@ -25,3 +25,10 @@

});
});
}
if (err) {
self._db.run('ROLLBACK;', [], function () {
self._db.run('END TRANSACTION;', [], done);
});
return;
}
return self._db.run('END TRANSACTION;', [], done);
}

@@ -28,0 +35,0 @@

2

package.json
{
"name": "websql",
"version": "0.3.0",
"version": "0.3.1",
"description": "WebSQL Database API, implemented for Node using sqlite3",

@@ -5,0 +5,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc