Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
0
Maintainers
3
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.0 to 0.5.0

13

lib/serialize.js

@@ -52,2 +52,9 @@

BlrWriter.prototype.addByteInt32 = function (c, b) {
this.addByte(c);
this.ensure(4);
this.buffer.writeUInt32LE(b, this.pos);
this.pos += 4;
};
BlrWriter.prototype.addNumeric = function (c, v) {

@@ -142,2 +149,8 @@

BlrReader.prototype.readInt32 = function () {
var value = this.buffer.readUInt32LE(this.pos);
this.pos += 4;
return value;
}
BlrReader.prototype.readInt = function(){

@@ -144,0 +157,0 @@ var len = this.buffer.readUInt16LE(this.pos);

2

package.json
{
"name": "node-firebird",
"version": "0.4.0",
"version": "0.5.0",
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",

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

![Firebird Logo](https://www.totaljs.com/exports/firebird-logo.png)
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![Mozilla License][license-image]][license-url]
[![Build Status](https://travis-ci.org/mariuz/node-firebird.svg?branch=master)](https://travis-ci.org/mariuz/node-firebird)
[![NPM](https://nodei.co/npm/node-firebird.png?downloads=true&downloadRank=true)](https://nodei.co/npm/node-firebird/) [![NPM](https://nodei.co/npm-dl/node-firebird.png?months=6&height=3)](https://nodei.co/npm/node-firebird/)
# Pure JavaScript Firebird client for Node.js.

@@ -14,3 +17,3 @@

__New version v0.2.0 supports__
__Changelog for version v0.2.x__

@@ -17,0 +20,0 @@ - added auto-reconnect

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

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