@vercel/node-bridge
Advanced tools
Comparing version 3.1.11 to 3.1.12
@@ -438,3 +438,9 @@ const { URL } = require('url'); | ||
if (!['connection', 'transfer-encoding'].includes(name)) { | ||
headers += `x-vercel-header-${name}: ${value}${CRLF}`; | ||
if (typeof value === 'string') { | ||
headers += `x-vercel-header-${name}: ${value}${CRLF}`; | ||
} else { | ||
for (const val of value) { | ||
headers += `x-vercel-header-${name}: ${val}${CRLF}`; | ||
} | ||
} | ||
} | ||
@@ -441,0 +447,0 @@ } |
{ | ||
"name": "@vercel/node-bridge", | ||
"version": "3.1.11", | ||
"version": "3.1.12", | ||
"license": "MIT", | ||
@@ -35,3 +35,3 @@ "main": "./index.js", | ||
}, | ||
"gitHead": "95a4dcfb33d813f1a0ef18d766232d42c876ce69" | ||
"gitHead": "7845bef8268b191f422f493fca6e2772bee7ac86" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
181216
4892