// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { open, openSync } from "./files.ts"; import { writeAll, writeAllSync } from "./buffer.ts"; export function writeTextFileSync(path: string | URL, data: string): void { const file = openSync(path, { write: true, create: true, truncate: true }); const encoder = new TextEncoder(); const contents = encoder.encode(data); writeAllSync(file, contents); file.close(); } export async function writeTextFile( path: string | URL, data: string ): Promise { const file = await open(path, { write: true, create: true, truncate: true }); const encoder = new TextEncoder(); const contents = encoder.encode(data); await writeAll(file, contents); file.close(); }