summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_appendFile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_appendFile.ts')
-rw-r--r--ext/node/polyfills/_fs/_fs_appendFile.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/node/polyfills/_fs/_fs_appendFile.ts b/ext/node/polyfills/_fs/_fs_appendFile.ts
index d47afe81b..d460600cc 100644
--- a/ext/node/polyfills/_fs/_fs_appendFile.ts
+++ b/ext/node/polyfills/_fs/_fs_appendFile.ts
@@ -4,17 +4,17 @@ import {
isFd,
maybeCallback,
WriteFileOptions,
-} from "internal:deno_node/polyfills/_fs/_fs_common.ts";
-import { Encodings } from "internal:deno_node/polyfills/_utils.ts";
+} from "internal:deno_node/_fs/_fs_common.ts";
+import { Encodings } from "internal:deno_node/_utils.ts";
import {
copyObject,
getOptions,
-} from "internal:deno_node/polyfills/internal/fs/utils.mjs";
+} from "internal:deno_node/internal/fs/utils.mjs";
import {
writeFile,
writeFileSync,
-} from "internal:deno_node/polyfills/_fs/_fs_writeFile.ts";
-import { promisify } from "internal:deno_node/polyfills/internal/util.mjs";
+} from "internal:deno_node/_fs/_fs_writeFile.ts";
+import { promisify } from "internal:deno_node/internal/util.mjs";
/**
* TODO: Also accept 'data' parameter as a Node polyfill Buffer type once these