UNPKG

mongo-express-enhanced

Version:
9 lines (8 loc) 268 B
export default function (html) { // Turn < ? > into HTML entities, so data doesn't get interpreted by the browser return html.replace(/&/g, '&amp;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;') .replace(/"/g, '&quot;') .replace(/'/g, '&apos;'); }