Files
hoppscotch/packages/hoppscotch-app/helpers/lenses/htmlLens.ts
2021-09-16 22:24:21 +05:30

13 lines
335 B
TypeScript

import { Lens } from "./lenses"
const htmlLens: Lens = {
lensName: "response.html",
isSupportedContentType: (contentType) =>
/\btext\/html|application\/xhtml\+xml\b/i.test(contentType),
renderer: "htmlres",
rendererImport: () =>
import("~/components/lenses/renderers/HTMLLensRenderer.vue"),
}
export default htmlLens