1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/runtime/js/40_read_file.js
2021-06-22 11:45:26 -04:00

55 lines
1.2 KiB
JavaScript

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const core = window.Deno.core;
const { open, openSync } = window.__bootstrap.files;
const { readAllInner, readAllSync } = window.__bootstrap.io;
function readFileSync(path) {
const file = openSync(path);
try {
const contents = readAllSync(file);
return contents;
} finally {
file.close();
}
}
async function readFile(path, options) {
const file = await open(path);
try {
const contents = await readAllInner(file, options);
return contents;
} finally {
file.close();
}
}
function readTextFileSync(path) {
const file = openSync(path);
try {
const contents = readAllSync(file);
return core.decode(contents);
} finally {
file.close();
}
}
async function readTextFile(path, options) {
const file = await open(path);
try {
const contents = await readAllInner(file, options);
return core.decode(contents);
} finally {
file.close();
}
}
window.__bootstrap.readFile = {
readFile,
readFileSync,
readTextFileSync,
readTextFile,
};
})(this);