Pessoal... olhem o comando abaixo do exercicio:
async function processaTexto(textPath){ const resultado = await pegaArquivo(caminho[2]) console.log(chalk.bgRedBright((resultado))) }
console.log(processaTexto(caminho))
Mesmo assim na hora de aparecer no terminar continua aparecendo Promises Pending.
Olha a outra função lá:
async function pegaArquivo(path){ try { const texto = await fs.promises.readFile(path, "utf-8") return extraiLinks(texto) }catch(err){ throw new Error(chalk.bgRed(err)) } }
Onde tá meu erro?