StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
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.
32 lines
900 B
32 lines
900 B
4 years ago
|
const domObjects = {
|
||
|
init,
|
||
|
document: null,
|
||
|
DocumentFragment: null,
|
||
|
SVGElement: null,
|
||
|
SVGSVGElement: null,
|
||
|
SVGElementInstance: null,
|
||
|
Element: null,
|
||
|
HTMLElement: null,
|
||
|
Event: null,
|
||
|
Touch: null,
|
||
|
PointerEvent: null
|
||
|
};
|
||
|
|
||
|
function blank() {}
|
||
|
|
||
|
export default domObjects;
|
||
|
|
||
|
function init(window) {
|
||
|
const win = window;
|
||
|
domObjects.document = win.document;
|
||
|
domObjects.DocumentFragment = win.DocumentFragment || blank;
|
||
|
domObjects.SVGElement = win.SVGElement || blank;
|
||
|
domObjects.SVGSVGElement = win.SVGSVGElement || blank;
|
||
|
domObjects.SVGElementInstance = win.SVGElementInstance || blank;
|
||
|
domObjects.Element = win.Element || blank;
|
||
|
domObjects.HTMLElement = win.HTMLElement || domObjects.Element;
|
||
|
domObjects.Event = win.Event;
|
||
|
domObjects.Touch = win.Touch || blank;
|
||
|
domObjects.PointerEvent = win.PointerEvent || win.MSPointerEvent;
|
||
|
}
|
||
|
//# sourceMappingURL=domObjects.js.map
|