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

request-micro

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

request-micro - npm Package Compare versions

Comparing version 1.2.3 to 1.3.0

CHANGELOG.md

7

index.js

@@ -19,2 +19,6 @@ module.exports = request

function isStream (o) {
return o !== null && typeof o === 'object' && typeof o.pipe === 'function'
}
function once (fn) {

@@ -72,3 +76,4 @@ var f = function () {

req.on('error', cb)
req.end(body)
if (isStream(body)) body.on('error', cb).pipe(req)
else req.end(body)
return req

@@ -75,0 +80,0 @@ }

2

package.json
{
"name": "request-micro",
"description": "A tiny request library with no dependencies. Supports Http(s) and follows redirects",
"version": "1.2.3",
"version": "1.3.0",
"author": {

@@ -6,0 +6,0 @@ "name": "Timothy Kye",

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