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

bare-stream

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bare-stream - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

2

package.json
{
"name": "bare-stream",
"version": "2.5.0",
"version": "2.5.1",
"description": "Streaming data for JavaScript",

@@ -5,0 +5,0 @@ "exports": {

@@ -1,3 +0,4 @@

const { Readable, getStreamError } = require('streamx')
const { Readable, getStreamError, isDisturbed } = require('streamx')
// https://streams.spec.whatwg.org/#readablestreamdefaultreader
exports.ReadableStreamDefaultReader = class ReadableStreamDefaultReader {

@@ -71,2 +72,3 @@ constructor(stream) {

// https://streams.spec.whatwg.org/#readablestreamdefaultcontroller
exports.ReadableStreamDefaultController = class ReadableStreamDefaultController {

@@ -97,2 +99,3 @@ constructor(stream) {

// https://streams.spec.whatwg.org/#readablestream
exports.ReadableStream = class ReadableStream {

@@ -175,2 +178,3 @@ constructor(

// https://streams.spec.whatwg.org/#countqueuingstrategy
exports.CountQueuingStrategy = class CountQueuingStrategy {

@@ -188,2 +192,3 @@ constructor(opts = {}) {

// https://streams.spec.whatwg.org/#bytelengthqueuingstrategy
exports.ByteLengthQueuingStrategy = class ByteLengthQueuingStrategy {

@@ -200,1 +205,6 @@ constructor(opts = {}) {

}
// https://streams.spec.whatwg.org/#is-readable-stream-disturbed
exports.isReadableStreamDisturbed = function isReadableStreamDisturbed(stream) {
return isDisturbed(stream._stream)
}
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