summaryrefslogtreecommitdiff
path: root/cli/js/read_file.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/read_file.ts')
-rw-r--r--cli/js/read_file.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/cli/js/read_file.ts b/cli/js/read_file.ts
deleted file mode 100644
index a90ad47fb..000000000
--- a/cli/js/read_file.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-// 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 readFileSync(path: string | URL): Uint8Array {
- const file = openSync(path);
- const contents = readAllSync(file);
- file.close();
- return contents;
-}
-
-export async function readFile(path: string | URL): Promise<Uint8Array> {
- const file = await open(path);
- const contents = await readAll(file);
- file.close();
- return contents;
-}