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

freedom-for-node

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

freedom-for-node - npm Package Compare versions

Comparing version 0.2.13 to 0.2.14

7

lib/link.js

@@ -113,3 +113,2 @@ /*jslint indent:2, white:true, node:true, sloppy:true */

message.message.message = this.replaceBuffers(message.message.message);
//console.log(message.message.message);
}

@@ -119,3 +118,7 @@ if (message && message.message && message.message.binary) {

for (i = 0; i < message.message.binary.length;i += 1) {
out.push(new Uint8Array(message.message.binary[i]).buffer);
if (process.versions.node < '0.12') {
out.push(new Uint8Array(message.message.binary[i]).buffer);
} else {
out.push(new Uint8Array(message.message.binary[i].data).buffer);
}
}

@@ -122,0 +125,0 @@ message.message.binary = out;

{
"name": "freedom-for-node",
"description": "Embracing a distributed web",
"version": "0.2.13",
"version": "0.2.14",
"homepage": "http://freedomjs.org",

@@ -6,0 +6,0 @@ "bugs": {

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