From 2acd93b852cf024cad1a386809f8ac806a033419 Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Wed, 23 Feb 2022 15:47:46 +0000 Subject: [PATCH] doc: document change to IncomingMessage.headers enumerability The IncomingMessage.headers property was made non-enumerable in PR #35281. --- doc/api/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/http.md b/doc/api/http.md index 8c60b43c7e365b..e7049bf3d7ec0e 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2197,7 +2197,7 @@ changes: pr-url: https://github.com/nodejs/node/pull/35281 description: >- `message.headers` is now lazily computed using an accessor property - on the prototype. + on the prototype and is no longer enumerable. --> * {Object}