New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kenjiuno/msgreader

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kenjiuno/msgreader - npm Package Compare versions

Comparing version 1.11.0 to 1.12.0-alpha.1

23

lib/Burner.js

@@ -100,3 +100,3 @@ "use strict";

var numDifatSectors = (numFatSectors > 109)
? RoundUpto512(4 * (numFatSectors - 109)) / 512
? RoundUpto512(4 * Math.floor((numFatSectors - 109) / 127 * 128)) / 512
: 0;

@@ -113,5 +113,22 @@ var firstDifatSector = (numDifatSectors !== 0)

{
for (var x = 0; x < numFatSectors; x++) {
((x < 109) ? difat1 : difat2).push(firstFatSector + x);
var x = 0;
for (; x < 109; x++) {
difat1.push(firstFatSector + x);
}
var nextDifatSector = firstDifatSector + 1;
for (; x < numFatSectors; x++) {
difat2.push(firstFatSector + x);
var remain = (difat2.length & 127);
if (remain === 127) {
difat2.push(nextDifatSector);
nextDifatSector++;
}
}
while (true) {
var remain = (difat2.length & 127);
if (remain === 0) {
break;
}
difat2.push((remain === 127) ? -2 : -1);
}
}

@@ -118,0 +135,0 @@ // header

2

package.json
{
"name": "@kenjiuno/msgreader",
"version": "1.11.0",
"version": "1.12.0-alpha.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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