srvx 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/node.mjs +1 -2
- package/dist/cli.mjs +1 -1
- package/package.json +1 -1
package/dist/adapters/node.mjs
CHANGED
|
@@ -146,8 +146,7 @@ const NodeRequestHeaders = /* @__PURE__ */ (() => {
|
|
|
146
146
|
for (let i = 0; i < len; i += 2) {
|
|
147
147
|
const key = rawHeaders[i];
|
|
148
148
|
if (key.charCodeAt(0) === 58) continue;
|
|
149
|
-
|
|
150
|
-
yield [key, value];
|
|
149
|
+
yield [key.toLowerCase(), rawHeaders[i + 1]];
|
|
151
150
|
}
|
|
152
151
|
}
|
|
153
152
|
entries() {
|
package/dist/cli.mjs
CHANGED
package/package.json
CHANGED