diff options
author | River <22485304+actual-size@users.noreply.github.com> | 2020-06-12 02:36:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-11 12:36:20 -0400 |
commit | 818a8010928cb8cef0b7043bd881c8cdce9b6efc (patch) | |
tree | 1502e74c9eb01901df8da118257d60d4f962b0e4 /cli/js/write_text_file.ts | |
parent | 813210d4337bf6e174f1da1f1a6c6fb9b073afa2 (diff) |
feat: URL support in Deno filesystem methods (#5990)
Diffstat (limited to 'cli/js/write_text_file.ts')
-rw-r--r-- | cli/js/write_text_file.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cli/js/write_text_file.ts b/cli/js/write_text_file.ts index d2a6575d7..4f111edb4 100644 --- a/cli/js/write_text_file.ts +++ b/cli/js/write_text_file.ts @@ -1,7 +1,7 @@ import { open, openSync } from "./files.ts"; import { writeAll, writeAllSync } from "./buffer.ts"; -export function writeTextFileSync(path: string, data: string): void { +export function writeTextFileSync(path: string | URL, data: string): void { const file = openSync(path, { write: true, create: true, truncate: true }); const enc = new TextEncoder(); const contents = enc.encode(data); @@ -9,7 +9,10 @@ export function writeTextFileSync(path: string, data: string): void { file.close(); } -export async function writeTextFile(path: string, data: string): Promise<void> { +export async function writeTextFile( + path: string | URL, + data: string +): Promise<void> { const file = await open(path, { write: true, create: true, truncate: true }); const enc = new TextEncoder(); const contents = enc.encode(data); |