gaunt-sloth-assistant
Version:
[](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [
* @param fileName
* @returns file contents
*/
export async function get(_, fileName) {
if (!fileName) {
return null;
}
const currentDir = getProjectDir();
const filePath = resolve(currentDir, fileName);
display(`Reading file ${fileName}...`);
return readFileSyncWithMessages(filePath);
}
//# sourceMappingURL=file.js.map