e2ed
Version:
E2E testing framework over Playwright
13 lines (12 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SafeHtml = void 0;
const sanitizeHtml_1 = require("../sanitizeHtml");
const createSafeHtmlWithoutSanitize = sanitizeHtml_1.createSafeHtmlWithoutSanitize;
/**
* Renders any `SafeHtml` string.
* This base client function should not use scope variables (except other base functions).
* @internal
*/
const SafeHtml = ({ withoutSanitize }) => createSafeHtmlWithoutSanitize `${withoutSanitize}`;
exports.SafeHtml = SafeHtml;