Skip to content

HTTP Response

js
import kittylog from "kittylog";

fetch("https://jsonplaceholder.typicode.com/users")
  .then(res => kittylog.httpResponse(res));
HTTP Response Parameters

PARAMETERS

ts
interface HttpResponseParameters {
  response: Response;
}

Released under the MIT License.