mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
20 lines
634 B
TypeScript
20 lines
634 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { open, openSync } from "./files.ts";
|
|
import { readAll, readAllSync } from "./buffer.ts";
|
|
|
|
export function readTextFileSync(path: string | URL): string {
|
|
const file = openSync(path);
|
|
const contents = readAllSync(file);
|
|
file.close();
|
|
const decoder = new TextDecoder();
|
|
return decoder.decode(contents);
|
|
}
|
|
|
|
export async function readTextFile(path: string | URL): Promise<string> {
|
|
const file = await open(path);
|
|
const contents = await readAll(file);
|
|
file.close();
|
|
const decoder = new TextDecoder();
|
|
return decoder.decode(contents);
|
|
}
|