@nxtedition/lib 23.3.3 → 23.3.4
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/http.js +2 -2
- package/package.json +1 -1
package/http.js
CHANGED
|
@@ -382,7 +382,7 @@ export async function request(ctx, next) {
|
|
|
382
382
|
|
|
383
383
|
export class ServerResponse extends http.ServerResponse {
|
|
384
384
|
#created = 0
|
|
385
|
-
#bytesWritten =
|
|
385
|
+
#bytesWritten = 0
|
|
386
386
|
#timing = {
|
|
387
387
|
connect: -1,
|
|
388
388
|
headers: -1,
|
|
@@ -481,7 +481,7 @@ export class ServerResponse extends http.ServerResponse {
|
|
|
481
481
|
|
|
482
482
|
export class Http2ServerResponse extends http2.Http2ServerResponse {
|
|
483
483
|
#created = 0
|
|
484
|
-
#bytesWritten =
|
|
484
|
+
#bytesWritten = 0
|
|
485
485
|
#timing = {
|
|
486
486
|
connect: -1,
|
|
487
487
|
headers: -1,
|