From ac437a89ed235348e0f8d23384f6efef289c6321 Mon Sep 17 00:00:00 2001 From: Randall Schmidt Date: Thu, 10 Jun 2021 12:08:44 -0400 Subject: [PATCH] update readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a855c2e..3904831 100644 --- a/README.md +++ b/README.md @@ -62,23 +62,23 @@ Returns a **ResponseHeaders** object representing the headers of the response, s Returns the raw headers as an array of `[key, value]` pairs, same as node-fetch. -## ResponseHeaders.keys() +### ResponseHeaders.keys() Returns an array of all header keys, same as node-fetch. -## ResponseHeaders.values() +### ResponseHeaders.values() Returns an array of all header values, same as node-fetch. -## ResponseHeaders.get(key) +### ResponseHeaders.get(key) Returns the value of the header with the given key, same as node-fetch. -## ResponseHeaders.has(key) +### ResponseHeaders.has(key) Returns true if the headers has a value for the given key, same as node-fetch. -## ResponseHeaders.raw +### ResponseHeaders.raw Returns the headers as an object of `{ "key": "value" }` pairs, same as node-fetch.