summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_appendFile.ts
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-03-14 21:46:39 +0000
committerGitHub <noreply@github.com>2020-03-14 17:46:39 -0400
commitea4f3ab852eba0eeb27004616163a0bbf9971215 (patch)
tree0e135fa6d55df589d795464294be2906d55f37bf /std/node/_fs/_fs_appendFile.ts
parentbf51f7b2ec1b64a7ff14f7255eba231409ee5414 (diff)
feat: add chmod Node polyfill and related file system constants (#4358)
Diffstat (limited to 'std/node/_fs/_fs_appendFile.ts')
-rw-r--r--std/node/_fs/_fs_appendFile.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/std/node/_fs/_fs_appendFile.ts b/std/node/_fs/_fs_appendFile.ts
index 193badf1f..49a4fc29f 100644
--- a/std/node/_fs/_fs_appendFile.ts
+++ b/std/node/_fs/_fs_appendFile.ts
@@ -3,8 +3,8 @@ import { FileOptions, isFileOptions, CallbackWithError } from "./_fs_common.ts";
import { notImplemented } from "../_utils.ts";
/**
- * TODO: Also accept 'data' parameter as a Node polyfill Buffer type once this
- * is implemented. See https://github.com/denoland/deno/issues/3403
+ * TODO: Also accept 'data' parameter as a Node polyfill Buffer or URL type once these
+ * are implemented. See https://github.com/denoland/deno/issues/3403
*/
export function appendFile(
pathOrRid: string | number,
@@ -69,8 +69,8 @@ function closeRidIfNecessary(isPathString: boolean, rid: number): void {
}
/**
- * TODO: Also accept 'data' parameter as a Node polyfill Buffer type once this
- * is implemented. See https://github.com/denoland/deno/issues/3403
+ * TODO: Also accept 'data' parameter as a Node polyfill Buffer or URL type once these
+ * are implemented. See https://github.com/denoland/deno/issues/3403
*/
export function appendFileSync(
pathOrRid: string | number,