summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/path/glob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/path/glob.ts')
-rw-r--r--ext/node/polyfills/path/glob.ts13
1 files changed, 5 insertions, 8 deletions
diff --git a/ext/node/polyfills/path/glob.ts b/ext/node/polyfills/path/glob.ts
index c0da29b9f..00529eb3c 100644
--- a/ext/node/polyfills/path/glob.ts
+++ b/ext/node/polyfills/path/glob.ts
@@ -1,13 +1,10 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-import { isWindows, osType } from "internal:deno_node/polyfills/_util/os.ts";
-import {
- SEP,
- SEP_PATTERN,
-} from "internal:deno_node/polyfills/path/separator.ts";
-import * as _win32 from "internal:deno_node/polyfills/path/win32.ts";
-import * as _posix from "internal:deno_node/polyfills/path/posix.ts";
-import type { OSType } from "internal:deno_node/polyfills/_util/os.ts";
+import { isWindows, osType } from "internal:deno_node/_util/os.ts";
+import { SEP, SEP_PATTERN } from "internal:deno_node/path/separator.ts";
+import * as _win32 from "internal:deno_node/path/win32.ts";
+import * as _posix from "internal:deno_node/path/posix.ts";
+import type { OSType } from "internal:deno_node/_util/os.ts";
const path = isWindows ? _win32 : _posix;
const { join, normalize } = path;