freedom-for-node
Advanced tools
Comparing version 0.2.13 to 0.2.14
@@ -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": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46586
1040
5