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

buffer-pipe

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buffer-pipe - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

index.js

@@ -21,4 +21,4 @@ const Buffer = require('safe-buffer').Buffer

this._bytesRead += num
const data = this.buffer.subarray(0, num)
this.buffer = this.buffer.subarray(num)
const data = this.buffer.slice(0, num)
this.buffer = this.buffer.slice(num)
return data

@@ -25,0 +25,0 @@ }

{
"name": "buffer-pipe",
"version": "0.0.2",
"version": "0.0.3",
"description": "A simple pipe for buffers",

@@ -18,9 +18,9 @@ "main": "index.js",

"dependencies": {
"safe-buffer": "^5.1.1"
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"standard": "^10.0.0",
"tape": "^4.0.3"
"coveralls": "^3.0.1",
"nyc": "^12.0.1",
"standard": "^11.0.0",
"tape": "^4.9.0"
},

@@ -27,0 +27,0 @@ "repository": {

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