diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-07-23 09:34:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-22 21:34:20 -0400 |
commit | 843b54549c04337f18c62d1daf159a79865de6b7 (patch) | |
tree | 1b77a6ad95fa5d5e85f4a6db5a8b9f8ab00d8f49 /std/fs/write_file_str.ts | |
parent | b573bbe4471c3872f96e1d7b9d1d1a2b39ff4cf1 (diff) |
BREAKING(std/fs): remove writeFileStr and writeFileStrSync (#6847)
This removes the writeFileStr and writeFileStrSync functions which are
effectivly duplicates of Deno.writeTextFile and Deno.writeTextFileSync.
Diffstat (limited to 'std/fs/write_file_str.ts')
-rw-r--r-- | std/fs/write_file_str.ts | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/std/fs/write_file_str.ts b/std/fs/write_file_str.ts deleted file mode 100644 index bf972f204..000000000 --- a/std/fs/write_file_str.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. - -/** - * Write the string to file synchronously. - * - * @param filename File to write - * @param content The content write to file - * @returns void - */ -export function writeFileStrSync(filename: string, content: string): void { - const encoder = new TextEncoder(); - Deno.writeFileSync(filename, encoder.encode(content)); -} - -/** - * Write the string to file. - * - * @param filename File to write - * @param content The content write to file - * @returns Promise<void> - */ -export async function writeFileStr( - filename: string, - content: string, -): Promise<void> { - const encoder = new TextEncoder(); - await Deno.writeFile(filename, encoder.encode(content)); -} |