Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
Maintainers
3
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-firebird - npm Package Compare versions

Comparing version 0.7.4 to 0.7.5

8

lib/serialize.js

@@ -101,3 +101,3 @@

this.pos++;
this.buffer.write(s, this.pos, s.length, encoding);
this.buffer.write(s, this.pos, len, encoding);
this.pos += len;

@@ -123,3 +123,3 @@ };

this.pos += 2;
this.buffer.write(s, this.pos, s.length, encoding);
this.buffer.write(s, this.pos, len, encoding);
this.pos += len;

@@ -254,5 +254,5 @@ };

var l = Long.fromNumber(value);
this.buffer.writeInt32BE(l.high_, this.pos);
this.buffer.writeInt32BE(l.high, this.pos);
this.pos += 4;
this.buffer.writeInt32BE(l.low_, this.pos);
this.buffer.writeInt32BE(l.low, this.pos);
this.pos += 4;

@@ -259,0 +259,0 @@ };

{
"name": "node-firebird",
"version": "0.7.4",
"version": "0.7.5",
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",

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

Sorry, the diff of this file is too big to display

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