From 843b54549c04337f18c62d1daf159a79865de6b7 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Thu, 23 Jul 2020 09:34:20 +0800 Subject: 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. --- std/fs/write_file_str.ts | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 std/fs/write_file_str.ts (limited to 'std/fs/write_file_str.ts') 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 - */ -export async function writeFileStr( - filename: string, - content: string, -): Promise { - const encoder = new TextEncoder(); - await Deno.writeFile(filename, encoder.encode(content)); -} -- cgit v1.2.3