first commit

This commit is contained in:
2025-10-11 10:47:07 +08:00
Unverified
commit 392a6a604c
6725 changed files with 1379477 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Generated by CoffeeScript 2.4.1
(function() {
// Represents the error handler for DOM operations
var XMLDOMErrorHandler;
module.exports = XMLDOMErrorHandler = class XMLDOMErrorHandler {
// Initializes a new instance of `XMLDOMErrorHandler`
constructor() {}
// Called on the error handler when an error occurs.
// `error` the error message as a string
handleError(error) {
throw new Error(error);
}
};
}).call(this);