summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/event_target.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/event_target.mjs')
-rw-r--r--ext/node/polyfills/internal/event_target.mjs14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/node/polyfills/internal/event_target.mjs b/ext/node/polyfills/internal/event_target.mjs
index d542fba94..39e6ad925 100644
--- a/ext/node/polyfills/internal/event_target.mjs
+++ b/ext/node/polyfills/internal/event_target.mjs
@@ -6,23 +6,23 @@ import {
ERR_INVALID_ARG_TYPE,
ERR_INVALID_THIS,
ERR_MISSING_ARGS,
-} from "internal:deno_node/polyfills/internal/errors.ts";
-import { validateObject, validateString } from "internal:deno_node/polyfills/internal/validators.mjs";
-import { emitWarning } from "internal:deno_node/polyfills/process.ts";
-import { nextTick } from "internal:deno_node/polyfills/_next_tick.ts";
+} from "internal:deno_node/internal/errors.ts";
+import { validateObject, validateString } from "internal:deno_node/internal/validators.mjs";
+import { emitWarning } from "internal:deno_node/process.ts";
+import { nextTick } from "internal:deno_node/_next_tick.ts";
import { Event as WebEvent, EventTarget as WebEventTarget } from "internal:deno_web/02_event.js";
import {
customInspectSymbol,
kEmptyObject,
kEnumerableProperty,
-} from "internal:deno_node/polyfills/internal/util.mjs";
-import { inspect } from "internal:deno_node/polyfills/util.ts";
+} from "internal:deno_node/internal/util.mjs";
+import { inspect } from "internal:deno_node/util.ts";
const kIsEventTarget = Symbol.for("nodejs.event_target");
const kIsNodeEventTarget = Symbol("kIsNodeEventTarget");
-import { EventEmitter } from "internal:deno_node/polyfills/events.ts";
+import { EventEmitter } from "internal:deno_node/events.ts";
const {
kMaxEventTargetListeners,
kMaxEventTargetListenersWarned,