Esse código era para puxar um arquivo de texto.md e me retornar no terminal, porém ele está me retornando undefined.
import fs from 'fs';
import chalk from 'chalk';
function pegaArquivo(caminhoDoArquivo) {
const encoding = 'UTF-8';
fs.readFile(caminhoDoArquivo, encoding, (_, texto) => {
console.log(chalk.green(texto));
} )
}
pegaArquivo('./arquivos/texto.md');