Socket
Socket
Sign inDemoInstall

tar-stream

Package Overview
Dependencies
6
Maintainers
2
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.1.6 to 3.1.7

4

headers.js

@@ -37,3 +37,3 @@ const b4a = require('b4a')

while (i < buf.length && buf[i] !== 32) i++
const len = parseInt(buf.subarray(0, i).toString(), 10)
const len = parseInt(b4a.toString(buf.subarray(0, i)), 10)
if (!len) return result

@@ -308,3 +308,3 @@

if (end === offset) return 0
return parseInt(val.subarray(offset, end).toString(), 8)
return parseInt(b4a.toString(val.subarray(offset, end)), 8)
}

@@ -311,0 +311,0 @@ }

{
"name": "tar-stream",
"version": "3.1.6",
"version": "3.1.7",
"description": "tar-stream is a streaming tar parser and generator and nothing else. It operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system.",

@@ -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