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

lightning-request

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightning-request - npm Package Compare versions

Comparing version

to
0.0.5

10

index.js

@@ -45,6 +45,8 @@ const http = require('http');

const contentType = headers['Content-Type'];
if (contentType === 'application/json') {
data = JSON.stringify(data);
} else if (contentType === 'application/x-www-form-urlencoded') {
data = qs.stringify(data);
if (Object.prototype.toString.call(data) === '[object Object]') {
if (contentType.startsWith('application/json')) {
data = JSON.stringify(data);
} else if (contentType.startsWith('application/x-www-form-urlencoded')) {
data = qs.stringify(data);
}
}

@@ -51,0 +53,0 @@

2

package.json
{
"name": "lightning-request",
"version": "0.0.4",
"version": "0.0.5",
"description": "Lightweight Node.js HTTP client",

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