mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
20 lines
588 B
TypeScript
20 lines
588 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { writeFileSync, writeFile, WriteFileOptions } from "./write_file.ts";
|
|
|
|
export function writeTextFileSync(
|
|
path: string | URL,
|
|
data: string,
|
|
options: WriteFileOptions = {}
|
|
): void {
|
|
const encoder = new TextEncoder();
|
|
return writeFileSync(path, encoder.encode(data), options);
|
|
}
|
|
|
|
export function writeTextFile(
|
|
path: string | URL,
|
|
data: string,
|
|
options: WriteFileOptions = {}
|
|
): Promise<void> {
|
|
const encoder = new TextEncoder();
|
|
return writeFile(path, encoder.encode(data), options);
|
|
}
|