@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
30 lines (24 loc) • 790 B
JavaScript
;
/*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
var nodeDomexception;
var hasRequiredNodeDomexception;
function requireNodeDomexception () {
if (hasRequiredNodeDomexception) return nodeDomexception;
hasRequiredNodeDomexception = 1;
if (!globalThis.DOMException) {
try {
const { MessageChannel } = require('worker_threads'),
port = new MessageChannel().port1,
ab = new ArrayBuffer();
port.postMessage(ab, [ab, ab]);
} catch (err) {
err.constructor.name === 'DOMException' && (
globalThis.DOMException = err.constructor
);
}
}
nodeDomexception = globalThis.DOMException;
return nodeDomexception;
}
exports.__require = requireNodeDomexception;
//# sourceMappingURL=index.js.map