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

@ethersphere/bee-js

Package Overview
Dependencies
Maintainers
0
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ethersphere/bee-js - npm Package Compare versions

Comparing version 8.3.0 to 8.3.1

4

dist/cjs/utils/tar-writer.js

@@ -16,2 +16,6 @@ "use strict";

}
else if (item.file) {
await tarStream.appendFile(new Uint8Array(await item.file.arrayBuffer()));
await tarStream.endFile();
}
else {

@@ -18,0 +22,0 @@ throw new Error('Invalid collection item');

2

dist/cjs/utils/tar.browser.js

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

// Initialize header with zeros
const header = new Uint8Array();
const header = new Uint8Array(512);
header.fill(0, 0, 512);

@@ -50,0 +50,0 @@ // File name, truncated to 100 characters if necessary

@@ -12,2 +12,5 @@ import { createReadStream } from 'fs';

stream.close();
} else if (item.file) {
await tarStream.appendFile(new Uint8Array(await item.file.arrayBuffer()));
await tarStream.endFile();
} else {

@@ -14,0 +17,0 @@ throw new Error('Invalid collection item');

@@ -43,3 +43,3 @@ export class TarStream {

// Initialize header with zeros
const header = new Uint8Array();
const header = new Uint8Array(512);
header.fill(0, 0, 512);

@@ -46,0 +46,0 @@ // File name, truncated to 100 characters if necessary

{
"name": "@ethersphere/bee-js",
"version": "8.3.0",
"version": "8.3.1",
"description": "Javascript client for Bee",

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

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

Sorry, the diff of this file is not supported yet

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