Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
0
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.7 to 0.0.8

lib/firebird.msg

14

lib/index.js

@@ -8,3 +8,4 @@ var

XdrWriter = serialize.XdrWriter,
BlrWriter = serialize.BlrWriter;
BlrWriter = serialize.BlrWriter,
messages = require("./messages.js");

@@ -1125,3 +1126,12 @@

self._queue.shift();
doCallback(obj, cb.callback, cb.error);
if (obj && obj.status) {
messages.lookupMessages(obj.status,
function(message){
obj.message = message;
doCallback(obj, cb.callback, cb.error);
}
)
} else {
doCallback(obj, cb.callback, cb.error);
}
}

@@ -1128,0 +1138,0 @@ });

2

package.json
{
"name": "node-firebird",
"version": "0.0.7",
"version": "0.0.8",
"description": "Firebird client - pure javascript",

@@ -5,0 +5,0 @@ "keywords": [

@@ -68,3 +68,3 @@ # node-firebird

if (obj.status) {
throw new Error('oups')
throw new Error(obj.message)
}

@@ -71,0 +71,0 @@ }

@@ -22,3 +22,3 @@ fb = require("../lib");

function logerror(err) {
console.log(err.status);
console.log(err.message);
}

@@ -25,0 +25,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc