UNPKG

react-router

Version:
25 lines (24 loc) 553 B
/** * react-router v8.0.0 * * Copyright (c) Remix Software Inc. * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. * * @license MIT */ //#region lib/dom/ssr/markup.ts const ESCAPE_LOOKUP = { "&": "\\u0026", ">": "\\u003e", "<": "\\u003c", "\u2028": "\\u2028", "\u2029": "\\u2029" }; const ESCAPE_REGEX = /[&><\u2028\u2029]/g; function escapeHtml(html) { return html.replace(ESCAPE_REGEX, (match) => ESCAPE_LOOKUP[match]); } //#endregion export { escapeHtml };