Skip to content

Cache text and json after reading #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/fetch_response.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ export class FetchResponse {

get html () {
if (this.contentType.match(/^(application|text)\/(html|xhtml\+xml)$/)) {
return this.response.text()
return this.text
}

return Promise.reject(new Error(`Expected an HTML response but got "${this.contentType}" instead`))
}

get json () {
if (this.contentType.match(/^application\/json/)) {
return this.response.json()
return this.responseJson || (this.responseJson = this.response.json())
}

return Promise.reject(new Error(`Expected a JSON response but got "${this.contentType}" instead`))
}

get text () {
return this.response.text()
return this.responseText || (this.responseText = this.response.text())
}

get isTurboStream () {
Expand Down