summaryrefslogtreecommitdiff
path: root/std/fs/write_file_str.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/write_file_str.ts')
-rw-r--r--std/fs/write_file_str.ts28
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));
-}