Files
emaui/node_modules/es-toolkit/dist/_internal/DOMException.mjs
2026-05-29 15:23:46 +03:00

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 };