The first request will result in an HTTP request and any subsequent requests with the same arguments and body function (text, json, buffer, or textConverted) will read the response body from the cache on disk.
Returns the body as a JavaScript object, parsed from JSON.
### async CachedResponse.buffer()
Returns the body as a Buffer.
### async CachedResponse.textConverted()
Identical to CachedResponse.text(), except instead of always converting to UTF-8, encoding sniffing will be performed and text converted to UTF-8, if possible.
(This API requires an optional dependency on [npm package encoding](https://www.npmjs.com/package/encoding), which you need to install manually.