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

mariasql

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mariasql - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

8

lib/Client.js

@@ -168,3 +168,3 @@ var lookup = require('dns').lookup,

Client.prototype.query = function(query, values, useArray, promote) {
var results;
var results, self = this;

@@ -183,3 +183,7 @@ if (Array.isArray(values) || typeof values === 'object')

this._queries.push(results);
this._processQueries();
// queries can actually start emitting results before the results object is
// returned here, so we defer processing until the next tick
process.nextTick(function() { self._processQueries(); });
return results;

@@ -186,0 +190,0 @@ };

{ "name": "mariasql",
"version": "0.1.11",
"version": "0.1.12",
"author": "Brian White <mscdex@mscdex.net>",

@@ -4,0 +4,0 @@ "description": "A node.js binding to MariaDB's non-blocking (MySQL-compatible) client library",

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