UNPKG

ng2-bs-table

Version:
22 lines 570 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var StringHelper = (function () { function StringHelper() { } StringHelper.escapeHtml = function (html) { var that = this; return String(html).replace(/[<>"'\/]/g, function (s) { return that.entityMap[s]; }); }; return StringHelper; }()); StringHelper.entityMap = { "<": "&lt;", ">": "&gt;", '"': '&quot;', "'": '&apos;', "/": '&#x2F;' }; exports.StringHelper = StringHelper; //# sourceMappingURL=string-helper.js.map