Files
hoppscotch/packages/hoppscotch-common/src/components/lenses/renderers/mixins/TextContentRendererMixin.js
2022-12-02 03:05:35 -05:00

17 lines
393 B
JavaScript

export default {
props: {
response: {},
},
computed: {
responseBodyText() {
if (typeof this.response.body === "string") return this.response.body
else {
const res = new TextDecoder("utf-8").decode(this.response.body)
// HACK: Temporary trailing null character issue from the extension fix
return res.replace(/\0+$/, "")
}
},
},
}