UNPKG

@wroud/vite-plugin-ssg

Version:

A Vite plugin for static site generation (SSG) with React. Renders React applications to static HTML for faster load times and improved SEO.

10 lines 318 B
export function unescapeHtml(html) { if (typeof html === "string") { return html.replaceAll(/&#([0-9]{1,3});/gi, function (match, numStr) { var num = parseInt(numStr, 10); return String.fromCharCode(num); }); } return html; } //# sourceMappingURL=unescapeHtml.js.map