@whatwg-node/server
Advanced tools
Comparing version 0.9.70 to 0.9.71-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5
@@ -148,2 +148,7 @@ "use strict"; | ||
default: | ||
if (globalThis.Bun) { | ||
// workaround for https://github.com/oven-sh/bun/issues/12368 | ||
// Proxy.get doesn't seem to get `receiver` correctly | ||
return Reflect.get(target, prop); | ||
} | ||
return Reflect.get(target, prop, receiver); | ||
@@ -150,0 +155,0 @@ } |
@@ -128,2 +128,7 @@ import { createDeferredPromise, fakePromise, isPromise, } from '@whatwg-node/promise-helpers'; | ||
default: | ||
if (globalThis.Bun) { | ||
// workaround for https://github.com/oven-sh/bun/issues/12368 | ||
// Proxy.get doesn't seem to get `receiver` correctly | ||
return Reflect.get(target, prop); | ||
} | ||
return Reflect.get(target, prop, receiver); | ||
@@ -130,0 +135,0 @@ } |
{ | ||
"name": "@whatwg-node/server", | ||
"version": "0.9.70", | ||
"version": "0.9.71-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5", | ||
"description": "Fetch API compliant HTTP Server adapter", | ||
@@ -9,3 +9,3 @@ "sideEffects": false, | ||
"@whatwg-node/fetch": "^0.10.5", | ||
"@whatwg-node/promise-helpers": "^1.0.0", | ||
"@whatwg-node/promise-helpers": "1.2.1-alpha-20250228110200-2dbbefddefadfee93983d529f84e6e5ccf5b4cf5", | ||
"tslib": "^2.6.3" | ||
@@ -12,0 +12,0 @@ }, |
162912
3030
64
276