strip html from description

This commit is contained in:
2023-11-24 14:39:28 -05:00
parent f7c6034fb0
commit 5f6e638903
526 changed files with 4373 additions and 23270 deletions
+34
View File
@@ -0,0 +1,34 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.patchAll = exports.patchEvents = exports.patchEE3 = void 0;
var ee_1 = require("./ee");
function patchEE3() {
try {
var ee3 = require('eventemitter3');
if (ee3) {
ee3.EventEmitter = ee_1.EventEmitter;
}
}
catch (err) {
console.error(err);
}
}
exports.patchEE3 = patchEE3;
function patchEvents() {
try {
var ee = require('events');
if (ee) {
ee.EventEmitter = ee_1.EventEmitter;
}
}
catch (err) {
console.error(err);
}
}
exports.patchEvents = patchEvents;
function patchAll() {
patchEE3();
patchEvents();
}
exports.patchAll = patchAll;
//# sourceMappingURL=patch.js.map