summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_chmod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_chmod.ts')
-rw-r--r--ext/node/polyfills/_fs/_fs_chmod.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/node/polyfills/_fs/_fs_chmod.ts b/ext/node/polyfills/_fs/_fs_chmod.ts
index d27bff562..015539e54 100644
--- a/ext/node/polyfills/_fs/_fs_chmod.ts
+++ b/ext/node/polyfills/_fs/_fs_chmod.ts
@@ -1,10 +1,10 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-import type { CallbackWithError } from "internal:deno_node/_fs/_fs_common.ts";
-import { getValidatedPath } from "internal:deno_node/internal/fs/utils.mjs";
-import * as pathModule from "internal:deno_node/path.ts";
-import { parseFileMode } from "internal:deno_node/internal/validators.mjs";
-import { Buffer } from "internal:deno_node/buffer.ts";
-import { promisify } from "internal:deno_node/internal/util.mjs";
+import type { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
+import { getValidatedPath } from "ext:deno_node/internal/fs/utils.mjs";
+import * as pathModule from "ext:deno_node/path.ts";
+import { parseFileMode } from "ext:deno_node/internal/validators.mjs";
+import { Buffer } from "ext:deno_node/buffer.ts";
+import { promisify } from "ext:deno_node/internal/util.mjs";
export function chmod(
path: string | Buffer | URL,