This commit is contained in:
counterweight 2026-05-14 10:56:04 +02:00
parent bc92231240
commit b8225c639e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11904 changed files with 1472749 additions and 133 deletions

21
node_modules/mathjax-full/js/adaptors/lite/Window.js generated vendored Normal file
View file

@ -0,0 +1,21 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LiteWindow = void 0;
var Element_js_1 = require("./Element.js");
var Document_js_1 = require("./Document.js");
var List_js_1 = require("./List.js");
var Parser_js_1 = require("./Parser.js");
var LiteWindow = (function () {
function LiteWindow() {
this.DOMParser = Parser_js_1.LiteParser;
this.NodeList = List_js_1.LiteList;
this.HTMLCollection = List_js_1.LiteList;
this.HTMLElement = Element_js_1.LiteElement;
this.DocumentFragment = List_js_1.LiteList;
this.Document = Document_js_1.LiteDocument;
this.document = new Document_js_1.LiteDocument();
}
return LiteWindow;
}());
exports.LiteWindow = LiteWindow;
//# sourceMappingURL=Window.js.map