mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 20:43:11 +02:00
8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
|
|
"use strict";
|
||
|
|
const DOMException = require("./webidl2js-wrapper.js");
|
||
|
|
|
||
|
|
const sharedGlobalObject = { Error };
|
||
|
|
DOMException.install(sharedGlobalObject);
|
||
|
|
|
||
|
|
module.exports = sharedGlobalObject.DOMException;
|