lightning-request
Advanced tools
Comparing version
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 @@ |
{ | ||
"name": "lightning-request", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Lightweight Node.js HTTP client", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
21119
0.47%130
1.56%