alan-js-runtime
Advanced tools
Comparing version 0.1.29 to 0.1.30
@@ -936,3 +936,3 @@ require('cross-fetch/polyfill') | ||
const rstatus = response.status | ||
const rheaders = Object.entries(response.headers) | ||
const rheaders = [...response.headers.entries()].map(kv => [kv[0] + '', kv[1] + '']) | ||
const rbody = await response.text() | ||
@@ -939,0 +939,0 @@ return [ true, [ rstatus, rheaders, rbody, 0n ] ] |
{ | ||
"name": "alan-js-runtime", | ||
"version": "0.1.29", | ||
"version": "0.1.30", | ||
"description": "The runtime component for alan-js. Separately licensed from the compiler.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
41566