UNPKG

auto-cms-server

Version:

Auto turn any webpage into editable CMS without coding.

19 lines (18 loc) 507 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.decodeHTML = decodeHTML; exports.encodeHTML = encodeHTML; function decodeHTML(html) { return html .replaceAll('&lt;', '<') .replaceAll('&gt;', '>') .replaceAll('&amp;', '&') .replaceAll('&nbsp;', ' '); } function encodeHTML(html) { return html .replaceAll('&', '&amp;') .replaceAll('<', '&lt;') .replaceAll('>', '&gt;') .replaceAll(' ', '&nbsp;'); }