Socket
Socket
Sign inDemoInstall

stream-slicer

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.3 to 0.0.4

5

index.js

@@ -47,4 +47,5 @@ var Transform = require('stream').Transform;

StreamSlicer.prototype._append = function ( str ) {
this._buffer.push(new Buffer(str));
this._currentLength += str.length;
var chunk = new Buffer(str);
this._buffer.push(chunk);
this._currentLength += chunk.length;
};

@@ -51,0 +52,0 @@

2

package.json
{
"name": "stream-slicer",
"version": "0.0.3",
"version": "0.0.4",
"description": "Slice another stream via a transform stream",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc