mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 14:21:00 +00:00
6 lines
231 B
JavaScript
6 lines
231 B
JavaScript
import { globalThis_ } from "./globalThis.mjs";
|
|
//#region src/_internal/DOMException.ts
|
|
const DOMException = typeof globalThis_.DOMException !== "undefined" ? globalThis_.DOMException : Error;
|
|
//#endregion
|
|
export { DOMException };
|