Socket
Socket
Sign inDemoInstall

fcbuffer

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fcbuffer - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

16

lib/types.js

@@ -64,12 +64,12 @@ 'use strict';

uint8: function uint8() {
return [bnbuf, { bits: 8 }];
return [intbuf, { bits: 8 }];
},
uint16: function uint16() {
return [bnbuf, { bits: 16 }];
return [intbuf, { bits: 16 }];
},
uint32: function uint32() {
return [bnbuf, { bits: 32 }];
return [intbuf, { bits: 32 }];
},
uint64: function uint64() {
return [bnbuf, { bits: 64 }];
return [intbuf, { bits: 64 }];
},

@@ -90,12 +90,12 @@ uint128: function uint128() {

int8: function int8() {
return [bnbuf, { signed: true, bits: 8 }];
return [intbuf, { signed: true, bits: 8 }];
},
int16: function int16() {
return [bnbuf, { signed: true, bits: 16 }];
return [intbuf, { signed: true, bits: 16 }];
},
int32: function int32() {
return [bnbuf, { signed: true, bits: 32 }];
return [intbuf, { signed: true, bits: 32 }];
},
int64: function int64() {
return [bnbuf, { signed: true, bits: 64 }];
return [intbuf, { signed: true, bits: 64 }];
},

@@ -102,0 +102,0 @@ int128: function int128() {

{
"name": "fcbuffer",
"description": "Serialization library geared towards immutable data storage such as blockchains.",
"version": "2.0.4",
"version": "2.0.5",
"main": "lib/index.js",

@@ -6,0 +6,0 @@ "license": "MIT",

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