diff options
Diffstat (limited to 'ext/node/polyfills/worker_threads.ts')
-rw-r--r-- | ext/node/polyfills/worker_threads.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/node/polyfills/worker_threads.ts b/ext/node/polyfills/worker_threads.ts index 7bca5fc4e..39e6e2fa6 100644 --- a/ext/node/polyfills/worker_threads.ts +++ b/ext/node/polyfills/worker_threads.ts @@ -1,9 +1,9 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // Copyright Joyent and Node contributors. All rights reserved. MIT license. -import { resolve, toFileUrl } from "internal:deno_node/polyfills/path.ts"; -import { notImplemented } from "internal:deno_node/polyfills/_utils.ts"; -import { EventEmitter } from "internal:deno_node/polyfills/events.ts"; +import { resolve, toFileUrl } from "internal:deno_node/path.ts"; +import { notImplemented } from "internal:deno_node/_utils.ts"; +import { EventEmitter } from "internal:deno_node/events.ts"; const environmentData = new Map(); let threads = 0; |