"use strict"; module.exports = (html) => String(html) .replace(/"/g, '"') .replace(/'/g, '\'') .replace(/:/g, ':') .replace(/</g, '<') .replace(/>/g, '>');