mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
23 lines
762 B
TypeScript
23 lines
762 B
TypeScript
// 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<void> {
|
|
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();
|
|
}
|