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

stream-buffers

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-buffers - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

UNLICENSE

2

lib/readable_streambuffer.js

@@ -32,3 +32,3 @@ var stream = require("stream"),

if(encoding) {
buffer.toString(encoding, 0, amount);
chunk = buffer.toString(encoding, 0, amount);
}

@@ -35,0 +35,0 @@ else {

@@ -84,3 +84,3 @@ var util = require("util"),

this.end = function() {
args = Array.prototype.slice.apply(arguments);
var args = Array.prototype.slice.apply(arguments);
if(args.length) that.write.apply(that, args);

@@ -87,0 +87,0 @@ that.destroy();

{
"name": "stream-buffers",
"version": "0.2.3",
"version": "0.2.4",
"description": "Buffer-backed Streams for reading and writing.",

@@ -5,0 +5,0 @@ "keywords": "memory streams, buffer streams",

@@ -108,2 +108,6 @@ # Node Stream Buffers

Not supposed to be a speed demon, it's more for tests/debugging or weird edge cases. It works with an internal buffer that it copies contents to/from/around.
Not supposed to be a speed demon, it's more for tests/debugging or weird edge cases. It works with an internal buffer that it copies contents to/from/around.
## License
node-stream-buffer is free and unencumbered public domain software. For more information, see the accompanying UNLICENSE file.
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