summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_watch.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_watch.ts')
-rw-r--r--ext/node/polyfills/_fs/_fs_watch.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/node/polyfills/_fs/_fs_watch.ts b/ext/node/polyfills/_fs/_fs_watch.ts
index 79f226126..7924eeeed 100644
--- a/ext/node/polyfills/_fs/_fs_watch.ts
+++ b/ext/node/polyfills/_fs/_fs_watch.ts
@@ -1,14 +1,14 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-import { basename } from "internal:deno_node/polyfills/path.ts";
-import { EventEmitter } from "internal:deno_node/polyfills/events.ts";
-import { notImplemented } from "internal:deno_node/polyfills/_utils.ts";
-import { promisify } from "internal:deno_node/polyfills/util.ts";
-import { getValidatedPath } from "internal:deno_node/polyfills/internal/fs/utils.mjs";
-import { validateFunction } from "internal:deno_node/polyfills/internal/validators.mjs";
-import { stat, Stats } from "internal:deno_node/polyfills/_fs/_fs_stat.ts";
-import { Stats as StatsClass } from "internal:deno_node/polyfills/internal/fs/utils.mjs";
-import { Buffer } from "internal:deno_node/polyfills/buffer.ts";
-import { delay } from "internal:deno_node/polyfills/_util/async.ts";
+import { basename } from "internal:deno_node/path.ts";
+import { EventEmitter } from "internal:deno_node/events.ts";
+import { notImplemented } from "internal:deno_node/_utils.ts";
+import { promisify } from "internal:deno_node/util.ts";
+import { getValidatedPath } from "internal:deno_node/internal/fs/utils.mjs";
+import { validateFunction } from "internal:deno_node/internal/validators.mjs";
+import { stat, Stats } from "internal:deno_node/_fs/_fs_stat.ts";
+import { Stats as StatsClass } from "internal:deno_node/internal/fs/utils.mjs";
+import { Buffer } from "internal:deno_node/buffer.ts";
+import { delay } from "internal:deno_node/_util/async.ts";
const statPromisified = promisify(stat);
const statAsync = async (filename: string): Promise<Stats | null> => {