Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
540 B

"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));
}