greg 4d1d2f8c52
Some checks failed
continuous-integration/drone Build is failing
maj
2023-06-11 20:17:11 +02:00

24 lines
540 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ansiHtml = ansiHtml;
function _ansiHtmlCommunity() {
const data = _interopRequireDefault(require("ansi-html-community"));
_ansiHtmlCommunity = function () {
return data;
};
return data;
}
var _escapeHtml = require("./escape-html");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function ansiHtml(ansi) {
return (0, _ansiHtmlCommunity().default)((0, _escapeHtml.escapeHTML)(ansi));
}