@@ -16,6 +16,8 @@ Compliant with [RFC 9110](https://www.rfc-editor.org/rfc/rfc9110).
1616
1717Utilities for ` Request ` object.
1818
19+ @deprecated Move to [ request-utils] ( https://github.com/httpland/request-utils ) .
20+
1921### equalsRequest
2022
2123Check two ` Request ` fields equality.
@@ -84,6 +86,9 @@ assertEquals(isRequest(null), false);
8486
8587Utilities for ` Response ` object.
8688
89+ @deprecated Move to
90+ [ response-utils] ( https://github.com/httpland/response-utils ) .
91+
8792### equalsResponse
8893
8994Check two ` Response ` fields equality.
@@ -152,6 +157,8 @@ Utilities for `Headers` object.
152157
153158### equalsHeaders
154159
160+ @deprecated Move to [ headers-utils] ( https://github.com/httpland/headers-utils ) .
161+
155162Check two ` Headers ` field name and field value equality.
156163
157164``` ts
@@ -170,6 +177,8 @@ assertEquals(
170177
171178### filterKeys
172179
180+ @deprecated Move to [ headers-utils] ( https://github.com/httpland/headers-utils ) .
181+
173182Returns a new ` Headers ` with all entries of the given headers except the ones
174183that have a key(header name or field name) that does not match the given
175184predicate.
@@ -506,6 +515,10 @@ HTTP message is following union types:
506515
507516### withHeader
508517
518+ @deprecated Move to [ request-utils] ( https://github.com/httpland/request-utils ) .
519+ @deprecated Move to
520+ [ response-utils] ( https://github.com/httpland/response-utils ) .
521+
509522Return an instance with the provided value replacing the specified header. There
510523are no side effects on the original target.
511524
0 commit comments