The first usage with any given arguments will result in an HTTP request and any subsequent usage 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.